sc2ai 0.6.5 → 0.8.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.
data/sig/sc2ai.rbs CHANGED
@@ -197,32 +197,32 @@ module Sc2
197
197
  # _@return_ — range of ports
198
198
  def self.port_range: (Integer from, Integer num_players) -> ::Range[untyped]
199
199
 
200
- # sord omit - no YARD type given for "port", using untyped
201
200
  # Will bind tcp port and return port if successful
202
- # if port is zero, it will return random port bound to
201
+ # when port is zero, it will return random port bound to
202
+ #
203
+ # _@param_ `port`
203
204
  #
204
205
  # _@return_ — port if bind succeeds, false on failure
205
- def self.bind: (untyped port) -> (Integer | bool)
206
+ def self.bind: (Integer port) -> (Integer | bool)
206
207
  end
207
208
 
208
209
  # A port configuration for a Match which allows generating Api::PortSet
209
210
  class PortConfig
210
- # sord omit - no YARD type given for "start_port:", using untyped
211
- # sord omit - no YARD type given for "num_players:", using untyped
212
- # sord omit - no YARD type given for "ports:", using untyped
213
- def initialize: (start_port: untyped, num_players: untyped, ?ports: untyped) -> void
211
+ # _@param_ `start_port`
212
+ #
213
+ # _@param_ `num_players`
214
+ #
215
+ # _@param_ `ports`
216
+ def initialize: (start_port: Integer, num_players: Integer, ?ports: ::Array[Integer]) -> void
214
217
 
215
- # sord omit - no YARD type given for :start_port, using untyped
216
218
  # Returns the value of attribute start_port.
217
- attr_reader start_port: untyped
219
+ attr_accessor start_port: Integer
218
220
 
219
- # sord omit - no YARD type given for :server_port_set, using untyped
220
221
  # Returns the value of attribute server_port_set.
221
- attr_reader server_port_set: untyped
222
+ attr_accessor server_port_set: ::Array[Integer]
222
223
 
223
- # sord omit - no YARD type given for :client_port_sets, using untyped
224
224
  # Returns the value of attribute client_port_sets.
225
- attr_reader client_port_sets: untyped
225
+ attr_accessor client_port_sets: ::Array[Integer]
226
226
  end
227
227
 
228
228
  # Allows defining Ai, Bot, BotProcess (external), Human or Observer for a Match
@@ -396,6 +396,21 @@ module Sc2
396
396
  # _@return_ — ladder matches will set an opponent id
397
397
  attr_accessor opponent_id: String
398
398
 
399
+ # Keeps track of time spent in steps.
400
+ #
401
+ # ```ruby
402
+ # # Useful for step-time as on ladder
403
+ # @timer.avg_step_time
404
+ # # Recent steps time, updated periodically. Good for debug ui
405
+ # @timer.avg_recent_step_time
406
+ # # Step time between now and previous measure and how many steps
407
+ # @timer.previous_on_step_time # Time we spent on step
408
+ # @timer.previous_on_step_count # How many steps we took
409
+ # ```
410
+ #
411
+ # _@see_ `Sc2::StepTimer`
412
+ attr_accessor timer: (Sc2::StepTimer | untyped)
413
+
399
414
  # _@return_ — callbacks implemented on player class
400
415
  attr_accessor callbacks_defined: ::Array[Symbol]
401
416
 
@@ -936,6 +951,10 @@ module Sc2
936
951
  # Sends actions via api and flushes action_queue
937
952
  def perform_actions: () -> Api::ResponseAction?
938
953
 
954
+ # Makes 10x unit moves to the same target turn into one action
955
+ # with many unit_tags
956
+ def combine_similar_actions: () -> void
957
+
939
958
  # Empties and resets @action_queue
940
959
  def clear_action_queue: () -> void
941
960
 
@@ -1381,7 +1400,7 @@ module Sc2
1381
1400
  # Each value in [row][column] holds a float value which is the z height
1382
1401
  #
1383
1402
  # _@return_ — Numo array
1384
- def parsed_terrain_height: () -> ::Numo::SFloat
1403
+ def parsed_terrain_height: () -> ::Numo::DFloat
1385
1404
 
1386
1405
  # Returns one of three Integer visibility indicators at tile for x & y
1387
1406
  #
@@ -1425,7 +1444,7 @@ module Sc2
1425
1444
  # _@return_ — Numo array
1426
1445
  #
1427
1446
  # _@see_ `#visibility` — for reading from this value
1428
- def parsed_visibility_grid: () -> ::Numo::SFloat
1447
+ def parsed_visibility_grid: () -> ::Numo::UInt8
1429
1448
 
1430
1449
  # Returns whether a tile has creep on it, as per minimap
1431
1450
  # One pixel covers one whole block. Corrects float inputs on your behalf.
@@ -1473,6 +1492,9 @@ module Sc2
1473
1492
  # ```
1474
1493
  def expansions: () -> ::Hash[Api::Point2D, UnitGroup]
1475
1494
 
1495
+ # Mineral walls. Defined once upon start of game, mostly based on layout.
1496
+ def mineral_walls: () -> Sc2::UnitGroup
1497
+
1476
1498
  # Returns a list of 2d points for expansion build locations
1477
1499
  # Does not contain mineral info, but the value can be checked against geo.expansions
1478
1500
  #
@@ -1952,27 +1974,24 @@ module Sc2
1952
1974
  attr_accessor radar_rings: untyped
1953
1975
 
1954
1976
  # sord omit - no YARD type given for :_all_seen_unit_tags, using untyped
1955
- # Privately keep track of all seen Unit tags (excl structures) in order to detect new created units
1977
+ # Privately keep track of all seen Unit tags in order to detect new created units
1956
1978
  attr_accessor _all_seen_unit_tags: untyped
1957
1979
 
1958
1980
  # sord omit - no YARD type given for :all_seen_unit_tags, using untyped
1959
- # Privately keep track of all seen Unit tags (excl structures) in order to detect new created units
1981
+ # Privately keep track of all seen Unit tags in order to detect new created units
1960
1982
  attr_accessor all_seen_unit_tags: untyped
1961
1983
 
1962
1984
  # _@return_ — group of Units and Structures effected
1963
1985
  attr_accessor event_units_damaged: Sc2::UnitGroup
1964
1986
 
1965
- # sord omit - no YARD type given for :event_units_destroyed, using untyped
1966
- # TODO: Unit buff disabled, because it calls back too often (mineral in hand). Put back if useful
1967
- # Units (Unit/Structure) on which a new buff_ids appeared this frame
1968
- # See which buffs via: unit.buff_ids - unit.previous.buff_ids
1969
- # Read this on_step. Alternative to callback on_unit_buffed
1970
- # attr_accessor :event_units_buffed
1971
- attr_accessor event_units_destroyed: untyped
1987
+ # _@return_ group of dead units
1988
+ attr_accessor event_units_destroyed: Sc2::UnitGroup
1972
1989
  end
1973
1990
 
1974
1991
  # Holds action list and queues batch
1975
1992
  module Actions
1993
+ COMBINABLE_ABILITIES: untyped
1994
+
1976
1995
  # Queues action for performing end of step
1977
1996
  #
1978
1997
  # _@param_ `action`
@@ -2177,6 +2196,10 @@ module Sc2
2177
2196
  # Sends actions via api and flushes action_queue
2178
2197
  def perform_actions: () -> Api::ResponseAction?
2179
2198
 
2199
+ # Makes 10x unit moves to the same target turn into one action
2200
+ # with many unit_tags
2201
+ def combine_similar_actions: () -> void
2202
+
2180
2203
  # Empties and resets @action_queue
2181
2204
  def clear_action_queue: () -> void
2182
2205
 
@@ -2789,6 +2812,9 @@ module Sc2
2789
2812
  # )[:observation]
2790
2813
  def send_request_for: (**untyped kwargs) -> untyped
2791
2814
 
2815
+ # Total milliseconds spent waiting on SC2 responses
2816
+ attr_accessor external_time: Float
2817
+
2792
2818
  # Returns the value of attribute host.
2793
2819
  attr_accessor host: untyped
2794
2820
 
@@ -3110,6 +3136,68 @@ module Sc2
3110
3136
  end
3111
3137
  end
3112
3138
 
3139
+ # Tracks various metrics about your step time performance.
3140
+ class StepTimer
3141
+ TRUNCATED_TIME_RANGE: untyped
3142
+ HEALTHY_STEP_TIME_MS: untyped
3143
+
3144
+ # _@param_ `bot`
3145
+ def initialize: (Sc2::Player _bot) -> void
3146
+
3147
+ # sord omit - no YARD return type given, using untyped
3148
+ # How much time we have left in this step, to be healthy
3149
+ def allowance: () -> untyped
3150
+
3151
+ # A one-line string summary of all tracked times
3152
+ def summary: () -> String
3153
+
3154
+ # A hash containing :avg_real_time, :avg_step_time, :avg_recent_step_time, :previous_on_step_count, :previous_on_step_time
3155
+ def to_h: () -> ::Hash[untyped, untyped]
3156
+
3157
+ # sord omit - no YARD return type given, using untyped
3158
+ def update: () -> untyped
3159
+
3160
+ # sord omit - no YARD type given for "time", using untyped
3161
+ # _@return_ — time with ansi colour coded
3162
+ def format_time: (untyped time) -> String
3163
+
3164
+ # _@return_ — Realtime average time per step in ms. Includes SC2 wait time
3165
+ attr_reader avg_real_time: Float
3166
+
3167
+ # _@return_ — Total average time per step in ms. "Ladder Time" as measured by aiarena
3168
+ attr_reader avg_step_time: Float
3169
+
3170
+ # _@return_ — Running average time per step in ms for recent couple of steps
3171
+ attr_accessor avg_recent_step_time: Float
3172
+
3173
+ # _@return_ — Running average time per step in ms for recent couple of steps
3174
+ attr_reader recent_average: Float
3175
+
3176
+ # _@return_ — Previous on_step took this amount of ms to run
3177
+ attr_reader previous_on_step_time: Float
3178
+
3179
+ # _@return_ — Number of frames which passed previous on_step
3180
+ attr_reader previous_on_step_count: Integer
3181
+
3182
+ # Returns the value of attribute bot.
3183
+ attr_accessor bot: untyped
3184
+
3185
+ # Returns the value of attribute previous_external_time.
3186
+ attr_accessor previous_external_time: untyped
3187
+
3188
+ # Returns the value of attribute previous_update_time.
3189
+ attr_accessor previous_update_time: untyped
3190
+
3191
+ # Returns the value of attribute recent_sum_time.
3192
+ attr_accessor recent_sum_time: untyped
3193
+
3194
+ # Returns the value of attribute recent_sum_steps.
3195
+ attr_accessor recent_sum_steps: untyped
3196
+
3197
+ # Returns the value of attribute recent_update_counter.
3198
+ attr_accessor recent_update_counter: untyped
3199
+ end
3200
+
3113
3201
  # Manage virtual control groups of units, similar to Hash or Array.
3114
3202
  class UnitGroup
3115
3203
  include Enumerable
@@ -3124,6 +3212,12 @@ module Sc2
3124
3212
  TYPE_BASES: ::Array[Integer]
3125
3213
  TYPE_DETECTORS: ::Array[Integer]
3126
3214
  TYPE_WARPGATE_UNIT: ::Array[Integer]
3215
+ TYPE_MELEE: ::Array[Integer]
3216
+ TYPE_RANGE: untyped
3217
+ TYPE_TERRAN_INFANTRY: ::Array[Integer]
3218
+ TYPE_TERRAN_VEHICLE: ::Array[Integer]
3219
+ TYPE_ZERG_MELEE: ::Array[Integer]
3220
+ TYPE_ZERG_MISSILE: ::Array[Integer]
3127
3221
 
3128
3222
  # _@param_ `units` — default to be added.
3129
3223
  #
@@ -3306,7 +3400,7 @@ module Sc2
3306
3400
  # _@param_ `other_unit_group`
3307
3401
  #
3308
3402
  # _@return_ — new unit group
3309
- def subtract: (UnitGroup other_unit_group) -> UnitGroup
3403
+ def subtract: (UnitGroup other_unit_group) -> Sc2::UnitGroup
3310
3404
 
3311
3405
  # sord omit - no YARD type given for "unit_group", using untyped
3312
3406
  # Merges unit_group with our units and returns a new unit group
@@ -3350,7 +3444,7 @@ module Sc2
3350
3444
  # _@param_ `other_unit_group`
3351
3445
  #
3352
3446
  # _@return_ — new unit group
3353
- def intersection: (UnitGroup other_unit_group) -> UnitGroup
3447
+ def intersection: (UnitGroup other_unit_group) -> Sc2::UnitGroup
3354
3448
 
3355
3449
  # Selects a single random Unit without a parameter or an array of Units with a param, i.e. self.random(2)
3356
3450
  def sample: () -> Api::Unit
@@ -3473,7 +3567,7 @@ module Sc2
3473
3567
  # # Multiple - select space-men
3474
3568
  # ug.select_type([Api::UnitTypeId::MARINE, Api::UnitTypeId::REAPER]) #=> <UnitGroup: ...>
3475
3569
  # ```
3476
- def select_type: ((Integer | ::Array[Integer]) unit_type_ids) -> UnitGroup
3570
+ def select_type: ((Integer | ::Array[Integer]) unit_type_ids) -> Sc2::UnitGroup
3477
3571
 
3478
3572
  # Returns a new UnitGroup excluding all units matching unit type id(s)
3479
3573
  #
@@ -3485,7 +3579,7 @@ module Sc2
3485
3579
  # # Multiple - reject immovable army
3486
3580
  # ug.reject_type([Api::UnitTypeId::SIEGETANKSIEGED, Api::UnitTypeId::WIDOWMINEBURROWED]) #=> <UnitGroup: ...>
3487
3581
  # ```
3488
- def reject_type: ((Integer | ::Array[Integer]) unit_type_ids) -> UnitGroup
3582
+ def reject_type: ((Integer | ::Array[Integer]) unit_type_ids) -> Sc2::UnitGroup
3489
3583
 
3490
3584
  # Creates a negative selector, which will perform the opposite on the current scope
3491
3585
  # for it's next select_type/reject_type call.
@@ -3509,7 +3603,7 @@ module Sc2
3509
3603
  # # Multiple - select mechanical flying units
3510
3604
  # ug.select_attribute([:MECHANICAL, :FLYING]) #=> <UnitGroup: ...>
3511
3605
  # ```
3512
- def select_attribute: ((Integer | ::Array[Integer]) attributes) -> UnitGroup
3606
+ def select_attribute: ((Integer | ::Array[Integer]) attributes) -> Sc2::UnitGroup
3513
3607
 
3514
3608
  # Returns a new UnitGroup containing all units excluding attribute id(s)
3515
3609
  # Multiple values work as an "AND" filter
@@ -3523,7 +3617,7 @@ module Sc2
3523
3617
  # # Multiple - reject mechanical flying units
3524
3618
  # ug.reject_attribute(:Mechanical, :Flying) #=> <UnitGroup: ...>
3525
3619
  # ```
3526
- def reject_attribute: ((Integer | ::Array[Integer]) attributes) -> UnitGroup
3620
+ def reject_attribute: ((Integer | ::Array[Integer]) attributes) -> Sc2::UnitGroup
3527
3621
 
3528
3622
  # Selects units you own
3529
3623
  # i.e. @bot.all_units.owned # => Units you own
@@ -3576,26 +3670,25 @@ module Sc2
3576
3670
  # Selects gas structures (refinery/extractor/assimilator)
3577
3671
  #
3578
3672
  # _@return_ — gas structures
3579
- def gas: () -> UnitGroup
3673
+ def gas: () -> Sc2::UnitGroup
3580
3674
 
3581
3675
  # Selects units passively have Detection
3582
3676
  #
3583
3677
  # _@return_ — gas structures
3584
- def detectors: () -> UnitGroup
3678
+ def detectors: () -> Sc2::UnitGroup
3585
3679
 
3586
3680
  # Selects only units which have finished constructing, i.o.w. build_progress == 1.0
3587
3681
  #
3588
3682
  # _@return_ — complete unit group
3589
- def completed: () -> UnitGroup
3683
+ def completed: () -> Sc2::UnitGroup
3590
3684
 
3591
3685
  # Selects only units which have finished constructing, i.o.w. build_progress != 1.0
3592
3686
  #
3593
3687
  # _@return_ — incomplete unit group
3594
- def incomplete: () -> UnitGroup
3688
+ def incomplete: () -> Sc2::UnitGroup
3595
3689
 
3596
- # sord omit - no YARD return type given, using untyped
3597
3690
  # Selects only units which do not have orders
3598
- def idle: () -> untyped
3691
+ def idle: () -> Sc2::UnitGroup
3599
3692
 
3600
3693
  # Selects units which have this ability available
3601
3694
  # Queries API if necessary
@@ -3603,7 +3696,7 @@ module Sc2
3603
3696
  # _@param_ `ability_id`
3604
3697
  #
3605
3698
  # _@return_ — units which have the ability available
3606
- def ability_available?: (Integer ability_id) -> UnitGroup
3699
+ def ability_available?: (Integer ability_id) -> Sc2::UnitGroup
3607
3700
 
3608
3701
  # Checks whether any unit's first order matches these abilities
3609
3702
  #
@@ -3715,18 +3808,19 @@ module Sc2
3715
3808
  # _@return_ — return group or single unit if amount is not supplied
3716
3809
  def nearest_to: (pos: Sc2::Position, ?amount: untyped) -> (Sc2::UnitGroup | Api::Unit)?
3717
3810
 
3718
- # sord omit - no YARD return type given, using untyped
3719
3811
  # Selects units which are in a particular circle
3720
3812
  #
3721
3813
  # _@param_ `point` — center of circle
3722
3814
  #
3723
3815
  # _@param_ `radius`
3724
- def select_in_circle: (point: (Api::Point2D | Api::Point), radius: Float) -> untyped
3816
+ #
3817
+ # _@return_ — new unit group
3818
+ def select_in_circle: (point: (Api::Point2D | Api::Point), radius: Float) -> Sc2::UnitGroup
3725
3819
 
3726
- # sord omit - no YARD type given for :units, using untyped
3727
3820
  # A hash of units by tag.
3728
- # @return [Hash<Integer, Api::Unit>] Api::Unit.tag => Api::Unit
3729
- attr_accessor units: untyped
3821
+ #
3822
+ # _@return_ — Api::Unit.tag => Api::Unit
3823
+ attr_accessor units: ::Hash[Integer, Api::Unit]
3730
3824
 
3731
3825
  # Returns the value of attribute _cache_hash.
3732
3826
  attr_accessor _cache_hash: untyped
@@ -3755,6 +3849,12 @@ module Sc2
3755
3849
  TYPE_BASES: ::Array[Integer]
3756
3850
  TYPE_DETECTORS: ::Array[Integer]
3757
3851
  TYPE_WARPGATE_UNIT: ::Array[Integer]
3852
+ TYPE_MELEE: ::Array[Integer]
3853
+ TYPE_RANGE: untyped
3854
+ TYPE_TERRAN_INFANTRY: ::Array[Integer]
3855
+ TYPE_TERRAN_VEHICLE: ::Array[Integer]
3856
+ TYPE_ZERG_MELEE: ::Array[Integer]
3857
+ TYPE_ZERG_MISSILE: ::Array[Integer]
3758
3858
 
3759
3859
  # _@param_ `unit_group`
3760
3860
  def initialize: (Sc2::UnitGroup unit_group) -> void
@@ -3901,6 +4001,25 @@ module Sc2
3901
4001
  class Client
3902
4002
  include Sc2::Client::ConfigurableOptions
3903
4003
 
4004
+ # Reads bundled versions.json
4005
+ # See tact archive or blizztrack for update config file
4006
+ # https://github.com/mdX7/tact_configs/blob/77ecc4176689ab6c50be342e1ad73127ffe358d7/tpr/sc2/config/08/b3/08b331b39d9fbe95c338ec370e63f2e2#L4
4007
+ # https://blizztrack.com/config/s2/bc/8453c2f1c98b955334c7284215429c36
4008
+ #
4009
+ # _@return_ — JSON contents of versions.json
4010
+ #
4011
+ # ```ruby
4012
+ # {
4013
+ # "base-version": 92028, # <- from "build-name" [1..-1] = "B92028"
4014
+ # "data-hash": "2B7746A6706F919775EF1BADFC95EA1C", # <- from "root"
4015
+ # "fixed-hash": "163B1CDF46F09B621F6312CD6901228E", # <- from "build-fixed-hash"
4016
+ # "label": "5.0.13", # <- check game client
4017
+ # "replay-hash": "BE64E420B329BD2A7D10EEBC0039D6E5", # <- from "build-replay-hash"
4018
+ # "version": 92028 <- always same as base-version these days
4019
+ # },
4020
+ # ```
4021
+ def self.versions_json: () -> ::Array[untyped]
4022
+
3904
4023
  # Whether the Sc2 process is running or not
3905
4024
  def running?: () -> bool
3906
4025
 
@@ -3941,11 +4060,6 @@ module Sc2
3941
4060
  # _@return_ — command to launch Sc2
3942
4061
  def command_string: () -> String
3943
4062
 
3944
- # Reads bundled versions.json
3945
- #
3946
- # _@return_ — JSON contents of versions.json
3947
- def versions_json: () -> ::Array[untyped]
3948
-
3949
4063
  # sord omit - no YARD return type given, using untyped
3950
4064
  # Resets configurable launch options to their defaults
3951
4065
  def load_default_launch_options: () -> untyped
@@ -4031,7 +4145,7 @@ module Sc2
4031
4145
  # top position of window if windowed
4032
4146
  attr_accessor windowy: Integer
4033
4147
 
4034
- # Version number such as "4.10". Leave blank to use latest
4148
+ # Version number such as "ladder" or "4.10". Leave blank to use latest
4035
4149
  attr_accessor version: String?
4036
4150
  end
4037
4151
  end
@@ -4111,6 +4225,15 @@ module Sc2
4111
4225
  module Position
4112
4226
  TOLERANCE: untyped
4113
4227
 
4228
+ # Returns self.
4229
+ # If you're ever unsure if you have a Unit or Position in hand,
4230
+ # this method allows safely calling `unknown_target.pos` to return a position.
4231
+ #
4232
+ # ```ruby
4233
+ # target.pos
4234
+ # ```
4235
+ def pos: () -> Sc2::Position
4236
+
4114
4237
  # Loose equality matches on floats x and y.
4115
4238
  # We never check z-axis, because the map is single-level.
4116
4239
  # TODO: We should almost certainly introduce TOLERANCE here, but verify it's cost first.
@@ -4145,11 +4268,13 @@ module Sc2
4145
4268
  # _@return_ — new Position
4146
4269
  def random_offset: (Float offset) -> Sc2::Position
4147
4270
 
4148
- # sord omit - no YARD type given for "offset", using untyped
4149
- # Changes this point's x and y by the supplied offset
4271
+ # Randomly change this point's x and y by the supplied offset.
4272
+ # i.e. offset=2 can adjust x and y by any number in range -2..2
4273
+ #
4274
+ # _@param_ `offset`
4150
4275
  #
4151
4276
  # _@return_ — self
4152
- def random_offset!: (untyped offset) -> Sc2::Position
4277
+ def random_offset!: (Float offset) -> Sc2::Position
4153
4278
 
4154
4279
  # Creates a new point with x and y which is offset
4155
4280
  #
@@ -4190,12 +4315,13 @@ module Sc2
4190
4315
  # A new point representing the normalized version of this vector (unit length).
4191
4316
  def normalize: () -> Api::Point2D
4192
4317
 
4193
- # sord omit - no YARD type given for "other", using untyped
4194
4318
  # Linear interpolation between this point and another for scale
4195
4319
  # Finds a point on a line between two points at % along the way. 0.0 returns self, 1.0 returns other, 0.5 is halfway.
4196
4320
  #
4321
+ # _@param_ `other`
4322
+ #
4197
4323
  # _@param_ `scale` — a value between 0.0..1.0
4198
- def lerp: (untyped other, Float scale) -> Api::Point2D
4324
+ def lerp: (Sc2::Position other, Float scale) -> Api::Point2D
4199
4325
 
4200
4326
  # Calculates the distance between self and other
4201
4327
  #
@@ -4236,16 +4362,13 @@ module Sc2
4236
4362
  def away_from: (Api::Point2D other, Float distance) -> Api::Point2D
4237
4363
 
4238
4364
  # Returns [x,y] array tuple
4239
- def to_axy: () -> ::Array[(Float | Float)]
4365
+ def to_axy: () -> ::Array[Float]
4240
4366
 
4241
4367
  # Returns [x,y] array tuple where floats are cast to ints
4242
4368
  # Useful when trying to find the tile which something is on
4243
- #
4244
- # _@return_ — Array<Integer, Integer>
4245
- def to_atile: () -> ::Array[(Integer | Integer)]
4369
+ def to_atile: () -> ::Array[Integer]
4246
4370
 
4247
- # sord omit - no YARD return type given, using untyped
4248
- def to_s: () -> untyped
4371
+ def to_s: () -> String
4249
4372
  end
4250
4373
  end
4251
4374
 
@@ -4543,7 +4666,7 @@ module Api
4543
4666
  ACCELERATIONZONETEMPORALFIELD: untyped
4544
4667
  ACCELERATIONZONEFLYINGTEMPORALFIELD: untyped
4545
4668
  INHIBITORZONEFLYINGTEMPORALFIELD: untyped
4546
- LOADOUTSPRAYTRACKER: untyped
4669
+ DUMMYBUFF000: untyped
4547
4670
  INHIBITORZONETEMPORALFIELD: untyped
4548
4671
  CLOAKFIELD: untyped
4549
4672
  RESONATINGGLAIVESPHASESHIFT: untyped
@@ -4553,6 +4676,11 @@ module Api
4553
4676
  TAKENDAMAGE: untyped
4554
4677
  RAVENSCRAMBLERMISSILECARRIER: untyped
4555
4678
  BATTERYOVERCHARGE: untyped
4679
+ DUMMYBUFF002: untyped
4680
+ DUMMYBUFF001: untyped
4681
+ DUMMYBUFF003: untyped
4682
+ DUMMYBUFF004: untyped
4683
+ DUMMYBUFF005: untyped
4556
4684
 
4557
4685
  # sord omit - no YARD return type given, using untyped
4558
4686
  def self._250MMSTRIKECANNONS: () -> untyped
@@ -4742,36 +4870,27 @@ module Api
4742
4870
 
4743
4871
  # Constant reference of Ability ids
4744
4872
  module AbilityId
4745
- NULL_NULL: untyped
4746
4873
  SMART: untyped
4747
4874
  TAUNT_TAUNT: untyped
4748
4875
  STOP_STOP: untyped
4749
4876
  STOP_HOLDFIRESPECIAL: untyped
4750
4877
  STOP_CHEER: untyped
4751
4878
  STOP_DANCE: untyped
4752
- HOLDFIRE_STOPSPECIAL: untyped
4753
- HOLDFIRE_HOLDFIRE: untyped
4754
4879
  MOVE_MOVE: untyped
4755
4880
  PATROL_PATROL: untyped
4756
4881
  HOLDPOSITION_HOLD: untyped
4757
4882
  SCAN_MOVE: untyped
4758
4883
  MOVE_TURN: untyped
4759
- BEACON_CANCEL: untyped
4760
- BEACON_BEACONMOVE: untyped
4761
4884
  ATTACK_ATTACK: untyped
4762
4885
  ATTACK_ATTACKTOWARDS: untyped
4763
4886
  ATTACK_ATTACKBARRAGE: untyped
4764
4887
  EFFECT_SPRAY_TERRAN: untyped
4765
4888
  EFFECT_SPRAY_ZERG: untyped
4766
4889
  EFFECT_SPRAY_PROTOSS: untyped
4767
- EFFECT_SALVAGE: untyped
4768
- CORRUPTION_CORRUPTIONABILITY: untyped
4769
- CORRUPTION_CANCEL: untyped
4770
4890
  BEHAVIOR_HOLDFIREON_GHOST: untyped
4771
4891
  BEHAVIOR_HOLDFIREOFF_GHOST: untyped
4772
4892
  MORPHTOINFESTEDTERRAN_INFESTEDTERRANS: untyped
4773
4893
  EXPLODE_EXPLODE: untyped
4774
- RESEARCH_INTERCEPTORGRAVITONCATAPULT: untyped
4775
4894
  FLEETBEACONRESEARCH_RESEARCHINTERCEPTORLAUNCHSPEEDUPGRADE: untyped
4776
4895
  RESEARCH_PHOENIXANIONPULSECRYSTALS: untyped
4777
4896
  FLEETBEACONRESEARCH_TEMPESTRANGEUPGRADE: untyped
@@ -4780,11 +4899,9 @@ module Api
4780
4899
  FUNGALGROWTH_FUNGALGROWTH: untyped
4781
4900
  GUARDIANSHIELD_GUARDIANSHIELD: untyped
4782
4901
  EFFECT_REPAIR_MULE: untyped
4783
- MORPHZERGLINGTOBANELING_BANELING: untyped
4784
4902
  NEXUSTRAINMOTHERSHIP_MOTHERSHIP: untyped
4785
4903
  FEEDBACK_FEEDBACK: untyped
4786
4904
  EFFECT_MASSRECALL_STRATEGICRECALL: untyped
4787
- PLACEPOINTDEFENSEDRONE_POINTDEFENSEDRONE: untyped
4788
4905
  HALLUCINATION_ARCHON: untyped
4789
4906
  HALLUCINATION_COLOSSUS: untyped
4790
4907
  HALLUCINATION_HIGHTEMPLAR: untyped
@@ -4797,21 +4914,11 @@ module Api
4797
4914
  HALLUCINATION_ZEALOT: untyped
4798
4915
  HARVEST_GATHER_MULE: untyped
4799
4916
  HARVEST_RETURN_MULE: untyped
4800
- SEEKERMISSILE_HUNTERSEEKERMISSILE: untyped
4801
4917
  CALLDOWNMULE_CALLDOWNMULE: untyped
4802
4918
  GRAVITONBEAM_GRAVITONBEAM: untyped
4803
4919
  CANCEL_GRAVITONBEAM: untyped
4804
4920
  BUILDINPROGRESSNYDUSCANAL_CANCEL: untyped
4805
- SIPHON_SIPHON: untyped
4806
- SIPHON_CANCEL: untyped
4807
- LEECH_LEECH: untyped
4808
4921
  SPAWNCHANGELING_SPAWNCHANGELING: untyped
4809
- DISGUISEASZEALOT_ZEALOT: untyped
4810
- DISGUISEASMARINEWITHSHIELD_MARINE: untyped
4811
- DISGUISEASMARINEWITHOUTSHIELD_MARINE: untyped
4812
- DISGUISEASZERGLINGWITHWINGS_ZERGLING: untyped
4813
- DISGUISEASZERGLINGWITHOUTWINGS_ZERGLING: untyped
4814
- PHASESHIFT_PHASESHIFT: untyped
4815
4922
  RALLY_BUILDING: untyped
4816
4923
  RALLY_MORPHING_UNIT: untyped
4817
4924
  RALLY_COMMANDCENTER: untyped
@@ -4822,17 +4929,13 @@ module Api
4822
4929
  RESEARCH_TUNNELINGCLAWS: untyped
4823
4930
  ROACHWARRENRESEARCH_ROACHSUPPLY: untyped
4824
4931
  SAPSTRUCTURE_SAPSTRUCTURE: untyped
4825
- INFESTEDTERRANS_INFESTEDTERRANS: untyped
4826
4932
  NEURALPARASITE_NEURALPARASITE: untyped
4827
4933
  CANCEL_NEURALPARASITE: untyped
4828
4934
  EFFECT_INJECTLARVA: untyped
4829
4935
  EFFECT_STIM_MARAUDER: untyped
4830
4936
  SUPPLYDROP_SUPPLYDROP: untyped
4831
- TEMPORALRIFT_TEMPORALRIFT: untyped
4832
- EFFECT_CHRONOBOOST: untyped
4833
4937
  RESEARCH_ANABOLICSYNTHESIS: untyped
4834
4938
  RESEARCH_CHITINOUSPLATING: untyped
4835
- WORMHOLETRANSIT_WORMHOLETRANSIT: untyped
4836
4939
  HARVEST_GATHER_SCV: untyped
4837
4940
  HARVEST_RETURN_SCV: untyped
4838
4941
  HARVEST_GATHER_PROBE: untyped
@@ -4846,8 +4949,6 @@ module Api
4846
4949
  CANCELSLOT_QUEUE5: untyped
4847
4950
  CANCEL_QUEUECANCELTOSELECTION: untyped
4848
4951
  CANCELSLOT_QUEUECANCELTOSELECTION: untyped
4849
- QUE5LONGBLEND_CANCEL: untyped
4850
- QUE5LONGBLEND_CANCELSLOT: untyped
4851
4952
  CANCEL_QUEUEADDON: untyped
4852
4953
  CANCELSLOT_ADDON: untyped
4853
4954
  CANCEL_BUILDINPROGRESS: untyped
@@ -4867,12 +4968,9 @@ module Api
4867
4968
  TERRANBUILD_ARMORY: untyped
4868
4969
  TERRANBUILD_FUSIONCORE: untyped
4869
4970
  HALT_TERRANBUILD: untyped
4870
- RAVENBUILD_AUTOTURRET: untyped
4871
- RAVENBUILD_CANCEL: untyped
4872
4971
  EFFECT_STIM_MARINE: untyped
4873
4972
  BEHAVIOR_CLOAKON_GHOST: untyped
4874
4973
  BEHAVIOR_CLOAKOFF_GHOST: untyped
4875
- SNIPE_SNIPE: untyped
4876
4974
  MEDIVACHEAL_HEAL: untyped
4877
4975
  SIEGEMODE_SIEGEMODE: untyped
4878
4976
  UNSIEGE_UNSIEGE: untyped
@@ -4888,6 +4986,7 @@ module Api
4888
4986
  LOAD_BUNKER: untyped
4889
4987
  UNLOADALL_BUNKER: untyped
4890
4988
  UNLOADUNIT_BUNKER: untyped
4989
+ COMMANDCENTERTRANSPORT_COMMANDCENTERTRANSPORT: untyped
4891
4990
  UNLOADALL_COMMANDCENTER: untyped
4892
4991
  UNLOADUNIT_COMMANDCENTER: untyped
4893
4992
  LOADALL_COMMANDCENTER: untyped
@@ -4915,6 +5014,7 @@ module Api
4915
5014
  BARRACKSTRAIN_REAPER: untyped
4916
5015
  BARRACKSTRAIN_GHOST: untyped
4917
5016
  BARRACKSTRAIN_MARAUDER: untyped
5017
+ FACTORYTRAIN_FACTORYTRAIN: untyped
4918
5018
  FACTORYTRAIN_SIEGETANK: untyped
4919
5019
  FACTORYTRAIN_THOR: untyped
4920
5020
  FACTORYTRAIN_HELLION: untyped
@@ -4936,7 +5036,6 @@ module Api
4936
5036
  ENGINEERINGBAYRESEARCH_TERRANINFANTRYARMORLEVEL1: untyped
4937
5037
  ENGINEERINGBAYRESEARCH_TERRANINFANTRYARMORLEVEL2: untyped
4938
5038
  ENGINEERINGBAYRESEARCH_TERRANINFANTRYARMORLEVEL3: untyped
4939
- MERCCOMPOUNDRESEARCH_REAPERSPEED: untyped
4940
5039
  BUILD_NUKE: untyped
4941
5040
  BARRACKSTECHLABRESEARCH_STIMPACK: untyped
4942
5041
  RESEARCH_COMBATSHIELD: untyped
@@ -4951,7 +5050,6 @@ module Api
4951
5050
  RESEARCH_CYCLONELOCKONDAMAGE: untyped
4952
5051
  FACTORYTECHLABRESEARCH_CYCLONERESEARCHHURRICANETHRUSTERS: untyped
4953
5052
  RESEARCH_BANSHEECLOAKINGFIELD: untyped
4954
- STARPORTTECHLABRESEARCH_RESEARCHMEDIVACENERGYUPGRADE: untyped
4955
5053
  RESEARCH_RAVENCORVIDREACTOR: untyped
4956
5054
  STARPORTTECHLABRESEARCH_RESEARCHSEEKERMISSILE: untyped
4957
5055
  STARPORTTECHLABRESEARCH_RESEARCHDURABLEMATERIALS: untyped
@@ -4959,8 +5057,6 @@ module Api
4959
5057
  STARPORTTECHLABRESEARCH_RESEARCHLIBERATORAGMODE: untyped
4960
5058
  STARPORTTECHLABRESEARCH_RESEARCHRAPIDDEPLOYMENT: untyped
4961
5059
  RESEARCH_RAVENRECALIBRATEDEXPLOSIVES: untyped
4962
- RESEARCH_HIGHCAPACITYFUELTANKS: untyped
4963
- RESEARCH_ADVANCEDBALLISTICS: untyped
4964
5060
  STARPORTTECHLABRESEARCH_RAVENRESEARCHENHANCEDMUNITIONS: untyped
4965
5061
  STARPORTTECHLABRESEARCH_RESEARCHRAVENINTERFERENCEMATRIX: untyped
4966
5062
  RESEARCH_PERSONALCLOAKING: untyped
@@ -5077,7 +5173,7 @@ module Api
5077
5173
  RESEARCH_ZERGLINGMETABOLICBOOST: untyped
5078
5174
  RESEARCH_GROOVEDSPINES: untyped
5079
5175
  RESEARCH_MUSCULARAUGMENTS: untyped
5080
- HYDRALISKDENRESEARCH_RESEARCHLURKERRANGE: untyped
5176
+ HYDRALISKDENRESEARCH_RESEARCHFRENZY: untyped
5081
5177
  RESEARCH_ZERGFLYERATTACKLEVEL1: untyped
5082
5178
  RESEARCH_ZERGFLYERATTACKLEVEL2: untyped
5083
5179
  RESEARCH_ZERGFLYERATTACKLEVEL3: untyped
@@ -5114,10 +5210,6 @@ module Api
5114
5210
  BURROWUP_ZERGLING: untyped
5115
5211
  BURROWDOWN_INFESTORTERRAN: untyped
5116
5212
  BURROWUP_INFESTORTERRAN: untyped
5117
- REDSTONELAVACRITTERBURROW_BURROWDOWN: untyped
5118
- REDSTONELAVACRITTERINJUREDBURROW_BURROWDOWN: untyped
5119
- REDSTONELAVACRITTERUNBURROW_BURROWUP: untyped
5120
- REDSTONELAVACRITTERINJUREDUNBURROW_BURROWUP: untyped
5121
5213
  LOAD_OVERLORD: untyped
5122
5214
  UNLOADALLAT_OVERLORD: untyped
5123
5215
  UNLOADUNIT_OVERLORD: untyped
@@ -5183,24 +5275,21 @@ module Api
5183
5275
  TWILIGHTCOUNCILRESEARCH_RESEARCHPSIONICAMPLIFIERS: untyped
5184
5276
  TACNUKESTRIKE_NUKECALLDOWN: untyped
5185
5277
  CANCEL_NUKE: untyped
5186
- SALVAGEBUNKERREFUND_SALVAGE: untyped
5187
- SALVAGEBUNKER_SALVAGE: untyped
5188
5278
  EMP_EMP: untyped
5189
- VORTEX_VORTEX: untyped
5190
5279
  TRAINQUEEN_QUEEN: untyped
5191
5280
  BURROWCREEPTUMORDOWN_BURROWDOWN: untyped
5192
5281
  TRANSFUSION_TRANSFUSION: untyped
5282
+ TECHLABMORPH_TECHLABMORPH: untyped
5193
5283
  BARRACKSTECHLABMORPH_TECHLABBARRACKS: untyped
5194
5284
  FACTORYTECHLABMORPH_TECHLABFACTORY: untyped
5195
5285
  STARPORTTECHLABMORPH_TECHLABSTARPORT: untyped
5286
+ REACTORMORPH_REACTORMORPH: untyped
5196
5287
  BARRACKSREACTORMORPH_REACTOR: untyped
5197
5288
  FACTORYREACTORMORPH_REACTOR: untyped
5198
5289
  STARPORTREACTORMORPH_REACTOR: untyped
5199
5290
  ATTACK_REDIRECT: untyped
5200
5291
  EFFECT_STIM_MARINE_REDIRECT: untyped
5201
5292
  EFFECT_STIM_MARAUDER_REDIRECT: untyped
5202
- BURROWEDSTOP_STOPROACHBURROWED: untyped
5203
- BURROWEDSTOP_HOLDFIRESPECIAL: untyped
5204
5293
  STOP_REDIRECT: untyped
5205
5294
  BEHAVIOR_GENERATECREEPON: untyped
5206
5295
  BEHAVIOR_GENERATECREEPOFF: untyped
@@ -5222,95 +5311,47 @@ module Api
5222
5311
  BUILD_NYDUSWORM: untyped
5223
5312
  BUILDNYDUSCANAL_SUMMONNYDUSCANALATTACKER: untyped
5224
5313
  BUILDNYDUSCANAL_CANCEL: untyped
5314
+ BROODLORDHANGAR_BROODLORDHANGAR: untyped
5225
5315
  EFFECT_CHARGE: untyped
5316
+ TOWERCAPTURE_TOWERCAPTURE: untyped
5226
5317
  HERDINTERACT_HERD: untyped
5227
- FRENZY_FRENZY: untyped
5228
5318
  CONTAMINATE_CONTAMINATE: untyped
5229
- INFESTEDTERRANSLAYEGG_INFESTEDTERRANS: untyped
5319
+ SHATTER_SHATTER: untyped
5230
5320
  CANCEL_QUEUEPASIVE: untyped
5231
5321
  CANCELSLOT_QUEUEPASSIVE: untyped
5232
5322
  CANCEL_QUEUEPASSIVECANCELTOSELECTION: untyped
5233
5323
  CANCELSLOT_QUEUEPASSIVECANCELTOSELECTION: untyped
5234
- MORPHTOGHOSTALTERNATE_MOVE: untyped
5235
5324
  MORPHTOGHOSTNOVA_MOVE: untyped
5236
5325
  DIGESTERCREEPSPRAY_DIGESTERCREEPSPRAY: untyped
5326
+ MORPHTOCOLLAPSIBLETERRANTOWERDEBRIS_MORPHTOCOLLAPSIBLETERRANTOWERDEBRIS: untyped
5237
5327
  MORPHTOCOLLAPSIBLETERRANTOWERDEBRIS_CANCEL: untyped
5328
+ MORPHTOCOLLAPSIBLETERRANTOWERDEBRISRAMPLEFT_MORPHTOCOLLAPSIBLETERRANTOWERDEBRISRAMPLEFT: untyped
5238
5329
  MORPHTOCOLLAPSIBLETERRANTOWERDEBRISRAMPLEFT_CANCEL: untyped
5330
+ MORPHTOCOLLAPSIBLETERRANTOWERDEBRISRAMPRIGHT_MORPHTOCOLLAPSIBLETERRANTOWERDEBRISRAMPRIGHT: untyped
5239
5331
  MORPHTOCOLLAPSIBLETERRANTOWERDEBRISRAMPRIGHT_CANCEL: untyped
5240
5332
  MORPH_MOTHERSHIP: untyped
5241
5333
  CANCEL_MORPHMOTHERSHIP: untyped
5242
- MOTHERSHIPSTASIS_MOTHERSHIPSTASIS: untyped
5243
- CANCEL_MOTHERSHIPSTASIS: untyped
5244
- MOTHERSHIPCOREWEAPON_MOTHERSHIPSTASIS: untyped
5245
- NEXUSTRAINMOTHERSHIPCORE_MOTHERSHIPCORE: untyped
5246
- MOTHERSHIPCORETELEPORT_MOTHERSHIPCORETELEPORT: untyped
5247
- SALVAGEDRONEREFUND_SALVAGE: untyped
5248
- SALVAGEDRONE_SALVAGE: untyped
5249
- SALVAGEZERGLINGREFUND_SALVAGE: untyped
5250
- SALVAGEZERGLING_SALVAGE: untyped
5251
- SALVAGEQUEENREFUND_SALVAGE: untyped
5252
- SALVAGEQUEEN_SALVAGE: untyped
5253
- SALVAGEROACHREFUND_SALVAGE: untyped
5254
- SALVAGEROACH_SALVAGE: untyped
5255
- SALVAGEBANELINGREFUND_SALVAGE: untyped
5256
- SALVAGEBANELING_SALVAGE: untyped
5257
- SALVAGEHYDRALISKREFUND_SALVAGE: untyped
5258
- SALVAGEHYDRALISK_SALVAGE: untyped
5259
- SALVAGEINFESTORREFUND_SALVAGE: untyped
5260
- SALVAGEINFESTOR_SALVAGE: untyped
5261
- SALVAGESWARMHOSTREFUND_SALVAGE: untyped
5262
- SALVAGESWARMHOST_SALVAGE: untyped
5263
- SALVAGEULTRALISKREFUND_SALVAGE: untyped
5264
- SALVAGEULTRALISK_SALVAGE: untyped
5265
- DIGESTERTRANSPORT_LOADDIGESTER: untyped
5266
- SPECTRESHIELD_SPECTRESHIELD: untyped
5267
5334
  XELNAGAHEALINGSHRINE_XELNAGAHEALINGSHRINE: untyped
5268
5335
  NEXUSINVULNERABILITY_NEXUSINVULNERABILITY: untyped
5269
- NEXUSPHASESHIFT_NEXUSPHASESHIFT: untyped
5270
- SPAWNCHANGELINGTARGET_SPAWNCHANGELING: untyped
5271
- QUEENLAND_QUEENLAND: untyped
5272
- QUEENFLY_QUEENFLY: untyped
5273
- ORACLECLOAKFIELD_ORACLECLOAKFIELD: untyped
5274
- FLYERSHIELD_FLYERSHIELD: untyped
5275
- LOCUSTTRAIN_SWARMHOST: untyped
5276
5336
  EFFECT_MASSRECALL_MOTHERSHIPCORE: untyped
5277
- SINGLERECALL_SINGLERECALL: untyped
5278
5337
  MORPH_HELLION: untyped
5279
- RESTORESHIELDS_RESTORESHIELDS: untyped
5280
- SCRYER_SCRYER: untyped
5281
- LEECHRESOURCES_CANCEL: untyped
5282
- SNIPEDOT_SNIPEDOT: untyped
5283
- SWARMHOSTSPAWNLOCUSTS_LOCUSTMP: untyped
5284
- CLONE_CLONE: untyped
5285
- BUILDINGSHIELD_BUILDINGSHIELD: untyped
5338
+ MORPHTOCOLLAPSIBLEROCKTOWERDEBRIS_MORPHTOCOLLAPSIBLEROCKTOWERDEBRIS: untyped
5286
5339
  MORPHTOCOLLAPSIBLEROCKTOWERDEBRIS_CANCEL: untyped
5287
5340
  MORPH_HELLBAT: untyped
5288
- BUILDINGSTASIS_BUILDINGSTASIS: untyped
5289
- MAXIUMTHRUST_MAXIMUMTHRUST: untyped
5290
5341
  BURROWDOWN_SWARMHOST: untyped
5291
5342
  MORPHTOSWARMHOSTBURROWEDMP_CANCEL: untyped
5292
5343
  BURROWUP_SWARMHOST: untyped
5293
- SPAWNINFESTEDTERRAN_LOCUSTMP: untyped
5294
5344
  ATTACKPROTOSSBUILDING_ATTACKBUILDING: untyped
5295
5345
  ATTACKPROTOSSBUILDING_ATTACKTOWARDS: untyped
5296
5346
  ATTACKPROTOSSBUILDING_ATTACKBARRAGE: untyped
5297
- BURROWEDBANELINGSTOP_STOPROACHBURROWED: untyped
5298
- BURROWEDBANELINGSTOP_HOLDFIRESPECIAL: untyped
5299
5347
  STOP_BUILDING: untyped
5300
5348
  STOPPROTOSSBUILDING_HOLDFIRE: untyped
5301
5349
  STOPPROTOSSBUILDING_CHEER: untyped
5302
5350
  STOPPROTOSSBUILDING_DANCE: untyped
5303
5351
  BLINDINGCLOUD_BLINDINGCLOUD: untyped
5304
- EYESTALK_EYESTALK: untyped
5305
- EYESTALK_CANCEL: untyped
5306
5352
  EFFECT_ABDUCT: untyped
5307
- VIPERCONSUME_VIPERCONSUME: untyped
5308
- VIPERCONSUMEMINERALS_VIPERCONSUME: untyped
5309
5353
  VIPERCONSUMESTRUCTURE_VIPERCONSUME: untyped
5310
- CANCEL_PROTOSSBUILDINGQUEUE: untyped
5311
- PROTOSSBUILDINGQUEUE_CANCELSLOT: untyped
5312
- QUE8_CANCEL: untyped
5313
- QUE8_CANCELSLOT: untyped
5354
+ TESTZERG_TESTZERG: untyped
5314
5355
  TESTZERG_CANCEL: untyped
5315
5356
  BEHAVIOR_BUILDINGATTACKON: untyped
5316
5357
  BEHAVIOR_BUILDINGATTACKOFF: untyped
@@ -5325,179 +5366,72 @@ module Api
5325
5366
  BURROWUP_WIDOWMINE: untyped
5326
5367
  WIDOWMINEATTACK_WIDOWMINEATTACK: untyped
5327
5368
  TORNADOMISSILE_TORNADOMISSILE: untyped
5328
- MOTHERSHIPCOREENERGIZE_MOTHERSHIPCOREENERGIZE: untyped
5329
- MOTHERSHIPCOREENERGIZE_CANCEL: untyped
5330
- LURKERASPECTMPFROMHYDRALISKBURROWED_LURKERMPFROMHYDRALISKBURROWED: untyped
5331
- LURKERASPECTMPFROMHYDRALISKBURROWED_CANCEL: untyped
5332
- LURKERASPECTMP_LURKERMP: untyped
5333
- LURKERASPECTMP_CANCEL: untyped
5334
5369
  BURROWDOWN_LURKER: untyped
5335
5370
  BURROWLURKERMPDOWN_CANCEL: untyped
5336
5371
  BURROWUP_LURKER: untyped
5337
- MORPH_LURKERDEN: untyped
5338
- CANCEL_MORPHLURKERDEN: untyped
5339
5372
  HALLUCINATION_ORACLE: untyped
5340
5373
  EFFECT_MEDIVACIGNITEAFTERBURNERS: untyped
5341
- EXTENDINGBRIDGENEWIDE8OUT_BRIDGEEXTEND: untyped
5342
- EXTENDINGBRIDGENEWIDE8_BRIDGERETRACT: untyped
5343
- EXTENDINGBRIDGENWWIDE8OUT_BRIDGEEXTEND: untyped
5344
- EXTENDINGBRIDGENWWIDE8_BRIDGERETRACT: untyped
5345
- EXTENDINGBRIDGENEWIDE10OUT_BRIDGEEXTEND: untyped
5346
- EXTENDINGBRIDGENEWIDE10_BRIDGERETRACT: untyped
5347
- EXTENDINGBRIDGENWWIDE10OUT_BRIDGEEXTEND: untyped
5348
- EXTENDINGBRIDGENWWIDE10_BRIDGERETRACT: untyped
5349
- EXTENDINGBRIDGENEWIDE12OUT_BRIDGEEXTEND: untyped
5350
- EXTENDINGBRIDGENEWIDE12_BRIDGERETRACT: untyped
5351
- EXTENDINGBRIDGENWWIDE12OUT_BRIDGEEXTEND: untyped
5352
- EXTENDINGBRIDGENWWIDE12_BRIDGERETRACT: untyped
5353
- INVULNERABILITYSHIELD_INVULNERABILITYSHIELD: untyped
5354
- CRITTERFLEE_CRITTERFLEE: untyped
5355
5374
  ORACLEREVELATION_ORACLEREVELATION: untyped
5356
- ORACLEREVELATIONMODE_ORACLEREVELATIONMODE: untyped
5357
- ORACLEREVELATIONMODE_CANCEL: untyped
5358
- ORACLENORMALMODE_ORACLENORMALMODE: untyped
5359
- ORACLENORMALMODE_CANCEL: untyped
5375
+ MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPRIGHT_MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPRIGHT: untyped
5360
5376
  MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPRIGHT_CANCEL: untyped
5377
+ MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPLEFT_MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPLEFT: untyped
5361
5378
  MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPLEFT_CANCEL: untyped
5362
- VOIDSIPHON_VOIDSIPHON: untyped
5363
5379
  ULTRALISKWEAPONCOOLDOWN_ULTRALISKWEAPONCOOLDOWN: untyped
5364
- MOTHERSHIPCOREPURIFYNEXUSCANCEL_CANCEL: untyped
5365
5380
  EFFECT_PHOTONOVERCHARGE: untyped
5366
- XELNAGA_CAVERNS_DOORE_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
5367
- XELNAGA_CAVERNS_DOOREOPENED_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
5368
- XELNAGA_CAVERNS_DOORN_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
5369
- XELNAGA_CAVERNS_DOORNE_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
5370
5381
  XELNAGA_CAVERNS_DOORNEOPENED_XELNAGA_CAVERNS_DOORDEFAULTOPEN: untyped
5371
5382
  XELNAGA_CAVERNS_DOORNOPENED_XELNAGA_CAVERNS_DOORDEFAULTOPEN: untyped
5372
- XELNAGA_CAVERNS_DOORNW_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
5373
5383
  XELNAGA_CAVERNS_DOORNWOPENED_XELNAGA_CAVERNS_DOORDEFAULTOPEN: untyped
5374
- XELNAGA_CAVERNS_DOORS_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
5375
- XELNAGA_CAVERNS_DOORSE_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
5376
5384
  XELNAGA_CAVERNS_DOORSEOPENED_XELNAGA_CAVERNS_DOORDEFAULTOPEN: untyped
5377
5385
  XELNAGA_CAVERNS_DOORSOPENED_XELNAGA_CAVERNS_DOORDEFAULTOPEN: untyped
5378
- XELNAGA_CAVERNS_DOORSW_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
5379
5386
  XELNAGA_CAVERNS_DOORSWOPENED_XELNAGA_CAVERNS_DOORDEFAULTOPEN: untyped
5380
- XELNAGA_CAVERNS_DOORW_XELNAGA_CAVERNS_DOORDEFAULTCLOSE: untyped
5381
5387
  XELNAGA_CAVERNS_DOORWOPENED_XELNAGA_CAVERNS_DOORDEFAULTOPEN: untyped
5382
- XELNAGA_CAVERNS_FLOATING_BRIDGENE8OUT_BRIDGEEXTEND: untyped
5383
- XELNAGA_CAVERNS_FLOATING_BRIDGENE8_BRIDGERETRACT: untyped
5384
- XELNAGA_CAVERNS_FLOATING_BRIDGENW8OUT_BRIDGEEXTEND: untyped
5385
- XELNAGA_CAVERNS_FLOATING_BRIDGENW8_BRIDGERETRACT: untyped
5386
- XELNAGA_CAVERNS_FLOATING_BRIDGENE10OUT_BRIDGEEXTEND: untyped
5387
- XELNAGA_CAVERNS_FLOATING_BRIDGENE10_BRIDGERETRACT: untyped
5388
- XELNAGA_CAVERNS_FLOATING_BRIDGENW10OUT_BRIDGEEXTEND: untyped
5389
- XELNAGA_CAVERNS_FLOATING_BRIDGENW10_BRIDGERETRACT: untyped
5390
- XELNAGA_CAVERNS_FLOATING_BRIDGENE12OUT_BRIDGEEXTEND: untyped
5391
- XELNAGA_CAVERNS_FLOATING_BRIDGENE12_BRIDGERETRACT: untyped
5392
- XELNAGA_CAVERNS_FLOATING_BRIDGENW12OUT_BRIDGEEXTEND: untyped
5393
- XELNAGA_CAVERNS_FLOATING_BRIDGENW12_BRIDGERETRACT: untyped
5394
- XELNAGA_CAVERNS_FLOATING_BRIDGEH8OUT_BRIDGEEXTEND: untyped
5395
- XELNAGA_CAVERNS_FLOATING_BRIDGEH8_BRIDGERETRACT: untyped
5396
- XELNAGA_CAVERNS_FLOATING_BRIDGEV8OUT_BRIDGEEXTEND: untyped
5397
- XELNAGA_CAVERNS_FLOATING_BRIDGEV8_BRIDGERETRACT: untyped
5398
- XELNAGA_CAVERNS_FLOATING_BRIDGEH10OUT_BRIDGEEXTEND: untyped
5399
- XELNAGA_CAVERNS_FLOATING_BRIDGEH10_BRIDGERETRACT: untyped
5400
- XELNAGA_CAVERNS_FLOATING_BRIDGEV10OUT_BRIDGEEXTEND: untyped
5401
- XELNAGA_CAVERNS_FLOATING_BRIDGEV10_BRIDGERETRACT: untyped
5402
- XELNAGA_CAVERNS_FLOATING_BRIDGEH12OUT_BRIDGEEXTEND: untyped
5403
- XELNAGA_CAVERNS_FLOATING_BRIDGEH12_BRIDGERETRACT: untyped
5404
- XELNAGA_CAVERNS_FLOATING_BRIDGEV12OUT_BRIDGEEXTEND: untyped
5405
- XELNAGA_CAVERNS_FLOATING_BRIDGEV12_BRIDGERETRACT: untyped
5406
5388
  EFFECT_TIMEWARP: untyped
5407
- SNOWREFINERY_TERRAN_EXTENDINGBRIDGENESHORT8OUT_BRIDGEEXTEND: untyped
5408
- SNOWREFINERY_TERRAN_EXTENDINGBRIDGENESHORT8_BRIDGERETRACT: untyped
5409
- SNOWREFINERY_TERRAN_EXTENDINGBRIDGENWSHORT8OUT_BRIDGEEXTEND: untyped
5410
- SNOWREFINERY_TERRAN_EXTENDINGBRIDGENWSHORT8_BRIDGERETRACT: untyped
5411
- SNOWREFINERY_TERRAN_EXTENDINGBRIDGENESHORT10OUT_BRIDGEEXTEND: untyped
5412
- SNOWREFINERY_TERRAN_EXTENDINGBRIDGENESHORT10_BRIDGERETRACT: untyped
5413
- SNOWREFINERY_TERRAN_EXTENDINGBRIDGENWSHORT10OUT_BRIDGEEXTEND: untyped
5414
- SNOWREFINERY_TERRAN_EXTENDINGBRIDGENWSHORT10_BRIDGERETRACT: untyped
5415
- ARMORYRESEARCHSWARM_TERRANVEHICLEANDSHIPWEAPONSLEVEL1: untyped
5416
- ARMORYRESEARCHSWARM_TERRANVEHICLEANDSHIPWEAPONSLEVEL2: untyped
5417
- ARMORYRESEARCHSWARM_TERRANVEHICLEANDSHIPWEAPONSLEVEL3: untyped
5418
- ARMORYRESEARCHSWARM_TERRANVEHICLEANDSHIPPLATINGLEVEL1: untyped
5419
- ARMORYRESEARCHSWARM_TERRANVEHICLEANDSHIPPLATINGLEVEL2: untyped
5420
- ARMORYRESEARCHSWARM_TERRANVEHICLEANDSHIPPLATINGLEVEL3: untyped
5389
+ TARSONIS_DOORN_TARSONIS_DOORN: untyped
5390
+ TARSONIS_DOORNLOWERED_TARSONIS_DOORNLOWERED: untyped
5391
+ TARSONIS_DOORNE_TARSONIS_DOORNE: untyped
5392
+ TARSONIS_DOORNELOWERED_TARSONIS_DOORNELOWERED: untyped
5393
+ TARSONIS_DOORE_TARSONIS_DOORE: untyped
5394
+ TARSONIS_DOORELOWERED_TARSONIS_DOORELOWERED: untyped
5395
+ TARSONIS_DOORNW_TARSONIS_DOORNW: untyped
5396
+ TARSONIS_DOORNWLOWERED_TARSONIS_DOORNWLOWERED: untyped
5397
+ COMPOUNDMANSION_DOORN_COMPOUNDMANSION_DOORN: untyped
5398
+ COMPOUNDMANSION_DOORNLOWERED_COMPOUNDMANSION_DOORNLOWERED: untyped
5399
+ COMPOUNDMANSION_DOORNE_COMPOUNDMANSION_DOORNE: untyped
5400
+ COMPOUNDMANSION_DOORNELOWERED_COMPOUNDMANSION_DOORNELOWERED: untyped
5401
+ COMPOUNDMANSION_DOORE_COMPOUNDMANSION_DOORE: untyped
5402
+ COMPOUNDMANSION_DOORELOWERED_COMPOUNDMANSION_DOORELOWERED: untyped
5403
+ COMPOUNDMANSION_DOORNW_COMPOUNDMANSION_DOORNW: untyped
5404
+ COMPOUNDMANSION_DOORNWLOWERED_COMPOUNDMANSION_DOORNWLOWERED: untyped
5421
5405
  CAUSTICSPRAY_CAUSTICSPRAY: untyped
5422
- ORACLECLOAKINGFIELDTARGETED_ORACLECLOAKINGFIELDTARGETED: untyped
5423
- EFFECT_IMMORTALBARRIER: untyped
5424
5406
  MORPHTORAVAGER_RAVAGER: untyped
5425
5407
  CANCEL_MORPHRAVAGER: untyped
5426
5408
  MORPH_LURKER: untyped
5427
5409
  CANCEL_MORPHLURKER: untyped
5428
- ORACLEPHASESHIFT_ORACLEPHASESHIFT: untyped
5429
- RELEASEINTERCEPTORS_RELEASEINTERCEPTORS: untyped
5430
5410
  EFFECT_CORROSIVEBILE: untyped
5431
5411
  BURROWDOWN_RAVAGER: untyped
5432
5412
  BURROWRAVAGERDOWN_CANCEL: untyped
5433
5413
  BURROWUP_RAVAGER: untyped
5434
5414
  PURIFICATIONNOVA_PURIFICATIONNOVA: untyped
5435
5415
  EFFECT_PURIFICATIONNOVA: untyped
5436
- IMPALE_IMPALE: untyped
5437
5416
  LOCKON_LOCKON: untyped
5438
- LOCKONAIR_LOCKONAIR: untyped
5439
5417
  CANCEL_LOCKON: untyped
5440
- CORRUPTIONBOMB_CORRUPTIONBOMB: untyped
5441
- CORRUPTIONBOMB_CANCEL: untyped
5442
5418
  EFFECT_TACTICALJUMP: untyped
5443
- OVERCHARGE_OVERCHARGE: untyped
5444
5419
  MORPH_THORHIGHIMPACTMODE: untyped
5445
5420
  THORAPMODE_CANCEL: untyped
5446
5421
  MORPH_THOREXPLOSIVEMODE: untyped
5447
5422
  CANCEL_MORPHTHOREXPLOSIVEMODE: untyped
5448
- LIGHTOFAIUR_LIGHTOFAIUR: untyped
5449
- EFFECT_MASSRECALL_MOTHERSHIP: untyped
5450
5423
  LOAD_NYDUSWORM: untyped
5451
5424
  UNLOADALL_NYDUSWORM: untyped
5452
5425
  BEHAVIOR_PULSARBEAMON: untyped
5453
5426
  BEHAVIOR_PULSARBEAMOFF: untyped
5454
- PULSARBEAM_RIPFIELD: untyped
5455
- PULSARCANNON_PULSARCANNON: untyped
5456
- VOIDSWARMHOSTSPAWNLOCUST_VOIDSWARMHOSTSPAWNLOCUST: untyped
5457
5427
  LOCUSTMPFLYINGMORPHTOGROUND_LOCUSTMPFLYINGSWOOP: untyped
5458
5428
  LOCUSTMPMORPHTOAIR_LOCUSTMPFLYINGSWOOP: untyped
5459
5429
  EFFECT_LOCUSTSWOOP: untyped
5460
5430
  HALLUCINATION_DISRUPTOR: untyped
5461
5431
  HALLUCINATION_ADEPT: untyped
5462
5432
  EFFECT_VOIDRAYPRISMATICALIGNMENT: untyped
5463
- AIURLIGHTBRIDGENE8OUT_BRIDGEEXTEND: untyped
5464
- AIURLIGHTBRIDGENE8_BRIDGERETRACT: untyped
5465
- AIURLIGHTBRIDGENE10OUT_BRIDGEEXTEND: untyped
5466
- AIURLIGHTBRIDGENE10_BRIDGERETRACT: untyped
5467
- AIURLIGHTBRIDGENE12OUT_BRIDGEEXTEND: untyped
5468
- AIURLIGHTBRIDGENE12_BRIDGERETRACT: untyped
5469
- AIURLIGHTBRIDGENW8OUT_BRIDGEEXTEND: untyped
5470
- AIURLIGHTBRIDGENW8_BRIDGERETRACT: untyped
5471
- AIURLIGHTBRIDGENW10OUT_BRIDGEEXTEND: untyped
5472
- AIURLIGHTBRIDGENW10_BRIDGERETRACT: untyped
5473
- AIURLIGHTBRIDGENW12OUT_BRIDGEEXTEND: untyped
5474
- AIURLIGHTBRIDGENW12_BRIDGERETRACT: untyped
5475
- AIURTEMPLEBRIDGENE8OUT_BRIDGEEXTEND: untyped
5476
- AIURTEMPLEBRIDGENE8_BRIDGERETRACT: untyped
5477
- AIURTEMPLEBRIDGENE10OUT_BRIDGEEXTEND: untyped
5478
- AIURTEMPLEBRIDGENE10_BRIDGERETRACT: untyped
5479
- AIURTEMPLEBRIDGENE12OUT_BRIDGEEXTEND: untyped
5480
- AIURTEMPLEBRIDGENE12_BRIDGERETRACT: untyped
5481
- AIURTEMPLEBRIDGENW8OUT_BRIDGEEXTEND: untyped
5482
- AIURTEMPLEBRIDGENW8_BRIDGERETRACT: untyped
5483
- AIURTEMPLEBRIDGENW10OUT_BRIDGEEXTEND: untyped
5484
- AIURTEMPLEBRIDGENW10_BRIDGERETRACT: untyped
5485
- AIURTEMPLEBRIDGENW12OUT_BRIDGEEXTEND: untyped
5486
- AIURTEMPLEBRIDGENW12_BRIDGERETRACT: untyped
5487
- SHAKURASLIGHTBRIDGENE8OUT_BRIDGEEXTEND: untyped
5488
- SHAKURASLIGHTBRIDGENE8_BRIDGERETRACT: untyped
5489
- SHAKURASLIGHTBRIDGENE10OUT_BRIDGEEXTEND: untyped
5490
- SHAKURASLIGHTBRIDGENE10_BRIDGERETRACT: untyped
5491
- SHAKURASLIGHTBRIDGENE12OUT_BRIDGEEXTEND: untyped
5492
- SHAKURASLIGHTBRIDGENE12_BRIDGERETRACT: untyped
5493
- SHAKURASLIGHTBRIDGENW8OUT_BRIDGEEXTEND: untyped
5494
- SHAKURASLIGHTBRIDGENW8_BRIDGERETRACT: untyped
5495
- SHAKURASLIGHTBRIDGENW10OUT_BRIDGEEXTEND: untyped
5496
- SHAKURASLIGHTBRIDGENW10_BRIDGERETRACT: untyped
5497
- SHAKURASLIGHTBRIDGENW12OUT_BRIDGEEXTEND: untyped
5498
- SHAKURASLIGHTBRIDGENW12_BRIDGERETRACT: untyped
5433
+ SEEKERDUMMYCHANNEL_SEEKERDUMMYCHANNEL: untyped
5499
5434
  VOIDMPIMMORTALREVIVEREBUILD_IMMORTAL: untyped
5500
- VOIDMPIMMORTALREVIVEDEATH_IMMORTAL: untyped
5501
5435
  ARBITERMPSTASISFIELD_ARBITERMPSTASISFIELD: untyped
5502
5436
  ARBITERMPRECALL_ARBITERMPRECALL: untyped
5503
5437
  CORSAIRMPDISRUPTIONWEB_CORSAIRMPDISRUPTIONWEB: untyped
@@ -5514,18 +5448,11 @@ module Api
5514
5448
  QUEENMPENSNARE_QUEENMPENSNARE: untyped
5515
5449
  QUEENMPSPAWNBROODLINGS_QUEENMPSPAWNBROODLINGS: untyped
5516
5450
  QUEENMPINFESTCOMMANDCENTER_QUEENMPINFESTCOMMANDCENTER: untyped
5517
- LIGHTNINGBOMB_LIGHTNINGBOMB: untyped
5518
- GRAPPLE_GRAPPLE: untyped
5519
- ORACLESTASISTRAP_ORACLEBUILDSTASISTRAP: untyped
5520
5451
  BUILD_STASISTRAP: untyped
5521
5452
  CANCEL_STASISTRAP: untyped
5522
5453
  ORACLESTASISTRAPACTIVATE_ACTIVATESTASISWARD: untyped
5523
- SELFREPAIR_SELFREPAIR: untyped
5524
- SELFREPAIR_CANCEL: untyped
5525
- AGGRESSIVEMUTATION_AGGRESSIVEMUTATION: untyped
5526
5454
  PARASITICBOMB_PARASITICBOMB: untyped
5527
5455
  ADEPTPHASESHIFT_ADEPTPHASESHIFT: untyped
5528
- PURIFICATIONNOVAMORPH_PURIFICATIONNOVA: untyped
5529
5456
  PURIFICATIONNOVAMORPHBACK_PURIFICATIONNOVA: untyped
5530
5457
  BEHAVIOR_HOLDFIREON_LURKER: untyped
5531
5458
  BEHAVIOR_HOLDFIREOFF_LURKER: untyped
@@ -5533,77 +5460,12 @@ module Api
5533
5460
  LIBERATORMORPHTOAA_LIBERATORAAMODE: untyped
5534
5461
  MORPH_LIBERATORAGMODE: untyped
5535
5462
  MORPH_LIBERATORAAMODE: untyped
5536
- TIMESTOP_TIMESTOP: untyped
5537
- TIMESTOP_CANCEL: untyped
5538
- AIURLIGHTBRIDGEABANDONEDNE8OUT_BRIDGEEXTEND: untyped
5539
- AIURLIGHTBRIDGEABANDONEDNE8_BRIDGERETRACT: untyped
5540
- AIURLIGHTBRIDGEABANDONEDNE10OUT_BRIDGEEXTEND: untyped
5541
- AIURLIGHTBRIDGEABANDONEDNE10_BRIDGERETRACT: untyped
5542
- AIURLIGHTBRIDGEABANDONEDNE12OUT_BRIDGEEXTEND: untyped
5543
- AIURLIGHTBRIDGEABANDONEDNE12_BRIDGERETRACT: untyped
5544
- AIURLIGHTBRIDGEABANDONEDNW8OUT_BRIDGEEXTEND: untyped
5545
- AIURLIGHTBRIDGEABANDONEDNW8_BRIDGERETRACT: untyped
5546
- AIURLIGHTBRIDGEABANDONEDNW10OUT_BRIDGEEXTEND: untyped
5547
- AIURLIGHTBRIDGEABANDONEDNW10_BRIDGERETRACT: untyped
5548
- AIURLIGHTBRIDGEABANDONEDNW12OUT_BRIDGEEXTEND: untyped
5549
- AIURLIGHTBRIDGEABANDONEDNW12_BRIDGERETRACT: untyped
5550
5463
  KD8CHARGE_KD8CHARGE: untyped
5551
- PENETRATINGSHOT_PENETRATINGSHOT: untyped
5552
- CLOAKINGDRONE_CLOAKINGDRONE: untyped
5553
5464
  CANCEL_ADEPTPHASESHIFT: untyped
5554
5465
  CANCEL_ADEPTSHADEPHASESHIFT: untyped
5555
5466
  SLAYNELEMENTALGRAB_SLAYNELEMENTALGRAB: untyped
5467
+ MORPHTOCOLLAPSIBLEPURIFIERTOWERDEBRIS_MORPHTOCOLLAPSIBLEPURIFIERTOWERDEBRIS: untyped
5556
5468
  MORPHTOCOLLAPSIBLEPURIFIERTOWERDEBRIS_CANCEL: untyped
5557
- PORTCITY_BRIDGE_UNITNE8OUT_BRIDGEEXTEND: untyped
5558
- PORTCITY_BRIDGE_UNITNE8_BRIDGERETRACT: untyped
5559
- PORTCITY_BRIDGE_UNITSE8OUT_BRIDGEEXTEND: untyped
5560
- PORTCITY_BRIDGE_UNITSE8_BRIDGERETRACT: untyped
5561
- PORTCITY_BRIDGE_UNITNW8OUT_BRIDGEEXTEND: untyped
5562
- PORTCITY_BRIDGE_UNITNW8_BRIDGERETRACT: untyped
5563
- PORTCITY_BRIDGE_UNITSW8OUT_BRIDGEEXTEND: untyped
5564
- PORTCITY_BRIDGE_UNITSW8_BRIDGERETRACT: untyped
5565
- PORTCITY_BRIDGE_UNITNE10OUT_BRIDGEEXTEND: untyped
5566
- PORTCITY_BRIDGE_UNITNE10_BRIDGERETRACT: untyped
5567
- PORTCITY_BRIDGE_UNITSE10OUT_BRIDGEEXTEND: untyped
5568
- PORTCITY_BRIDGE_UNITSE10_BRIDGERETRACT: untyped
5569
- PORTCITY_BRIDGE_UNITNW10OUT_BRIDGEEXTEND: untyped
5570
- PORTCITY_BRIDGE_UNITNW10_BRIDGERETRACT: untyped
5571
- PORTCITY_BRIDGE_UNITSW10OUT_BRIDGEEXTEND: untyped
5572
- PORTCITY_BRIDGE_UNITSW10_BRIDGERETRACT: untyped
5573
- PORTCITY_BRIDGE_UNITNE12OUT_BRIDGEEXTEND: untyped
5574
- PORTCITY_BRIDGE_UNITNE12_BRIDGERETRACT: untyped
5575
- PORTCITY_BRIDGE_UNITSE12OUT_BRIDGEEXTEND: untyped
5576
- PORTCITY_BRIDGE_UNITSE12_BRIDGERETRACT: untyped
5577
- PORTCITY_BRIDGE_UNITNW12OUT_BRIDGEEXTEND: untyped
5578
- PORTCITY_BRIDGE_UNITNW12_BRIDGERETRACT: untyped
5579
- PORTCITY_BRIDGE_UNITSW12OUT_BRIDGEEXTEND: untyped
5580
- PORTCITY_BRIDGE_UNITSW12_BRIDGERETRACT: untyped
5581
- PORTCITY_BRIDGE_UNITN8OUT_BRIDGEEXTEND: untyped
5582
- PORTCITY_BRIDGE_UNITN8_BRIDGERETRACT: untyped
5583
- PORTCITY_BRIDGE_UNITS8OUT_BRIDGEEXTEND: untyped
5584
- PORTCITY_BRIDGE_UNITS8_BRIDGERETRACT: untyped
5585
- PORTCITY_BRIDGE_UNITE8OUT_BRIDGEEXTEND: untyped
5586
- PORTCITY_BRIDGE_UNITE8_BRIDGERETRACT: untyped
5587
- PORTCITY_BRIDGE_UNITW8OUT_BRIDGEEXTEND: untyped
5588
- PORTCITY_BRIDGE_UNITW8_BRIDGERETRACT: untyped
5589
- PORTCITY_BRIDGE_UNITN10OUT_BRIDGEEXTEND: untyped
5590
- PORTCITY_BRIDGE_UNITN10_BRIDGERETRACT: untyped
5591
- PORTCITY_BRIDGE_UNITS10OUT_BRIDGEEXTEND: untyped
5592
- PORTCITY_BRIDGE_UNITS10_BRIDGERETRACT: untyped
5593
- PORTCITY_BRIDGE_UNITE10OUT_BRIDGEEXTEND: untyped
5594
- PORTCITY_BRIDGE_UNITE10_BRIDGERETRACT: untyped
5595
- PORTCITY_BRIDGE_UNITW10OUT_BRIDGEEXTEND: untyped
5596
- PORTCITY_BRIDGE_UNITW10_BRIDGERETRACT: untyped
5597
- PORTCITY_BRIDGE_UNITN12OUT_BRIDGEEXTEND: untyped
5598
- PORTCITY_BRIDGE_UNITN12_BRIDGERETRACT: untyped
5599
- PORTCITY_BRIDGE_UNITS12OUT_BRIDGEEXTEND: untyped
5600
- PORTCITY_BRIDGE_UNITS12_BRIDGERETRACT: untyped
5601
- PORTCITY_BRIDGE_UNITE12OUT_BRIDGEEXTEND: untyped
5602
- PORTCITY_BRIDGE_UNITE12_BRIDGERETRACT: untyped
5603
- PORTCITY_BRIDGE_UNITW12OUT_BRIDGEEXTEND: untyped
5604
- PORTCITY_BRIDGE_UNITW12_BRIDGERETRACT: untyped
5605
- TEMPESTDISRUPTIONBLAST_TEMPESTDISRUPTIONBLAST: untyped
5606
- CANCEL_TEMPESTDISRUPTIONBLAST: untyped
5607
5469
  EFFECT_SHADOWSTRIDE: untyped
5608
5470
  EFFECT_SPAWNLOCUSTS: untyped
5609
5471
  LOCUSTMPFLYINGSWOOPATTACK_LOCUSTMPFLYINGSWOOP: untyped
@@ -5614,305 +5476,6 @@ module Api
5614
5476
  PURIFYMORPHPYLON_MOTHERSHIPCOREWEAPON: untyped
5615
5477
  PURIFYMORPHPYLONBACK_MOTHERSHIPCOREWEAPON: untyped
5616
5478
  RESEARCH_SHADOWSTRIKE: untyped
5617
- HEAL_MEDICHEAL: untyped
5618
- LURKERASPECT_LURKER: untyped
5619
- LURKERASPECT_CANCEL: untyped
5620
- BURROWLURKERDOWN_BURROWDOWN: untyped
5621
- BURROWLURKERDOWN_CANCEL: untyped
5622
- BURROWLURKERUP_BURROWUP: untyped
5623
- D8CHARGE_D8CHARGE: untyped
5624
- DEFENSIVEMATRIX_DEFENSIVEMATRIX: untyped
5625
- MISSILEPODS_MISSILEPODS: untyped
5626
- LOKIMISSILEPODS_MISSILEPODS: untyped
5627
- HUTTRANSPORT_HUTLOAD: untyped
5628
- HUTTRANSPORT_HUTUNLOADALL: untyped
5629
- LEVIATHANSPAWNBROODLORD_SPAWNBROODLORD: untyped
5630
- SS_CARRIERBOSSATTACKLAUNCH_SS_SHOOTING: untyped
5631
- SS_CARRIERSPAWNINTERCEPTOR_SS_CARRIERSPAWNINTERCEPTOR: untyped
5632
- SS_CARRIERBOSSATTACKTARGET_SS_SHOOTING: untyped
5633
- SS_FIGHTERBOMB_SS_FIGHTERBOMB: untyped
5634
- SS_PHOENIXSHOOTING_SS_SHOOTING: untyped
5635
- SS_BATTLECRUISERMISSILEATTACK_SS_SHOOTING: untyped
5636
- SS_LEVIATHANSPAWNBOMBS_SS_LEVIATHANSPAWNBOMBS: untyped
5637
- SS_BATTLECRUISERHUNTERSEEKERATTACK_SS_SHOOTING: untyped
5638
- SS_LEVIATHANTENTACLEATTACKL1NODELAY_SS_LEVIATHANTENTACLEATTACKL1NODELAY: untyped
5639
- SS_LEVIATHANTENTACLEATTACKL2NODELAY_SS_LEVIATHANTENTACLEATTACKL2NODELAY: untyped
5640
- SS_LEVIATHANTENTACLEATTACKR1NODELAY_SS_LEVIATHANTENTACLEATTACKR1NODELAY: untyped
5641
- SS_LEVIATHANTENTACLEATTACKR2NODELAY_SS_LEVIATHANTENTACLEATTACKR2NODELAY: untyped
5642
- SS_SCIENCEVESSELTELEPORT_ZERATULBLINK: untyped
5643
- SS_TERRATRONBEAMATTACK_SS_TERRATRONBEAMATTACK: untyped
5644
- SS_TERRATRONSAWATTACK_SS_TERRATRONSAWATTACK: untyped
5645
- SS_WRAITHATTACK_SS_SHOOTING: untyped
5646
- SS_SWARMGUARDIANATTACK_SS_SHOOTING: untyped
5647
- SS_SCOUTATTACK_SS_SHOOTING: untyped
5648
- SS_INTERCEPTORATTACK_SS_SHOOTING: untyped
5649
- SS_CORRUPTORATTACK_SS_SHOOTING: untyped
5650
- SS_LEVIATHANTENTACLEATTACKL2_SS_LEVIATHANTENTACLEATTACKL2: untyped
5651
- SS_LEVIATHANTENTACLEATTACKR1_SS_LEVIATHANTENTACLEATTACKR1: untyped
5652
- SS_LEVIATHANTENTACLEATTACKL1_SS_LEVIATHANTENTACLEATTACKL1: untyped
5653
- SS_LEVIATHANTENTACLEATTACKR2_SS_LEVIATHANTENTACLEATTACKR2: untyped
5654
- SS_SCIENCEVESSELATTACK_SS_SHOOTING: untyped
5655
- LURKERASPECTFROMHYDRALISKBURROWED_LURKERFROMHYDRALISKBURROWED: untyped
5656
- LURKERASPECTFROMHYDRALISKBURROWED_CANCEL: untyped
5657
- UPGRADETOLURKERDEN_LURKERDEN: untyped
5658
- UPGRADETOLURKERDEN_CANCEL: untyped
5659
- ADVANCEDCONSTRUCTION_CANCEL: untyped
5660
- BUILDINPROGRESSNONCANCELLABLE_CANCEL: untyped
5661
- INFESTEDVENTSPAWNCORRUPTOR_SPAWNCORRUPTOR: untyped
5662
- INFESTEDVENTSPAWNBROODLORD_SPAWNBROODLORD: untyped
5663
- IRRADIATE_IRRADIATE: untyped
5664
- IRRADIATE_CANCEL: untyped
5665
- INFESTEDVENTSPAWNMUTALISK_LEVIATHANSPAWNMUTALISK: untyped
5666
- MAKEVULTURESPIDERMINES_SPIDERMINEREPLENISH: untyped
5667
- MEDIVACDOUBLEBEAMHEAL_HEAL: untyped
5668
- MINDCONTROL_MINDCONTROL: untyped
5669
- OBLITERATE_OBLITERATE: untyped
5670
- VOODOOSHIELD_VOODOOSHIELD: untyped
5671
- RELEASEMINION_RELEASEMINION: untyped
5672
- ULTRASONICPULSE_ULTRASONICPULSE: untyped
5673
- ARCHIVESEAL_ARCHIVESEAL: untyped
5674
- ARTANISVORTEX_VORTEX: untyped
5675
- ARTANISWORMHOLETRANSIT_WORMHOLETRANSIT: untyped
5676
- BUNKERATTACK_BUNKERATTACK: untyped
5677
- BUNKERATTACK_ATTACKTOWARDS: untyped
5678
- BUNKERATTACK_ATTACKBARRAGE: untyped
5679
- BUNKERSTOP_STOPBUNKER: untyped
5680
- BUNKERSTOP_HOLDFIRESPECIAL: untyped
5681
- CANCELTERRAZINEHARVEST_CANCEL: untyped
5682
- LEVIATHANSPAWNMUTALISK_LEVIATHANSPAWNMUTALISK: untyped
5683
- PARKCOLONISTVEHICLE_PARKCOLONISTVEHICLE: untyped
5684
- STARTCOLONISTVEHICLE_STARTCOLONISTVEHICLE: untyped
5685
- CONSUMPTION_CONSUMPTION: untyped
5686
- CONSUMEDNA_CONSUMEDNA: untyped
5687
- EGGPOP_EGGPOP: untyped
5688
- EXPERIMENTALPLASMAGUN_EXPERIMENTALPLASMAGUN: untyped
5689
- GATHERSPECIALOBJECT_GATHERSPECIALOBJECT: untyped
5690
- LOKIUNDOCK_LIFT: untyped
5691
- MINDBLAST_MINDBLAST: untyped
5692
- MORPHTOINFESTEDCIVILIAN_MORPHTOINFESTEDCIVILIAN: untyped
5693
- QUEENSHOCKWAVE_QUEENSHOCKWAVE: untyped
5694
- TAURENOUTHOUSELIFTOFF_TAURENOUTHOUSEFLY: untyped
5695
- TAURENOUTHOUSETRANSPORT_LOADTAURENOUTHOUSE: untyped
5696
- TAURENOUTHOUSETRANSPORT_UNLOADTAURENOUTHOUSE: untyped
5697
- TYCHUS03OMEGASTORM_OMEGASTORM: untyped
5698
- RAYNORSNIPE_RAYNORSNIPE: untyped
5699
- BONESHEAL_BONESHEAL: untyped
5700
- BONESTOSSGRENADE_TOSSGRENADETYCHUS: untyped
5701
- HERCULESTRANSPORT_MEDIVACLOAD: untyped
5702
- HERCULESTRANSPORT_MEDIVACUNLOADALL: untyped
5703
- SPECOPSDROPSHIPTRANSPORT_MEDIVACLOAD: untyped
5704
- SPECOPSDROPSHIPTRANSPORT_MEDIVACUNLOADALL: untyped
5705
- DUSKWINGBANSHEECLOAKINGFIELD_CLOAKONBANSHEE: untyped
5706
- DUSKWINGBANSHEECLOAKINGFIELD_CLOAKOFF: untyped
5707
- HYPERIONYAMATOSPECIAL_HYPERIONYAMATOGUN: untyped
5708
- INFESTABLEHUTTRANSPORT_HUTLOAD: untyped
5709
- INFESTABLEHUTTRANSPORT_HUTUNLOADALL: untyped
5710
- DUTCHPLACETURRET_DUTCHPLACETURRET: untyped
5711
- BURROWINFESTEDCIVILIANDOWN_BURROWDOWN: untyped
5712
- BURROWINFESTEDCIVILIANUP_BURROWUP: untyped
5713
- SELENDISHANGAR_INTERCEPTOR: untyped
5714
- SIEGEBREAKERSIEGE_SIEGEMODE: untyped
5715
- SIEGEBREAKERUNSIEGE_UNSIEGE: untyped
5716
- SOULCHANNEL_CANCEL: untyped
5717
- SENTRYGUNBURROW_BURROWTURRET: untyped
5718
- SENTRYGUNUNBURROW_UNBURROWTURRET: untyped
5719
- GRAVITONPRISON_GRAVITONPRISON: untyped
5720
- IMPLOSION_IMPLOSION: untyped
5721
- OMEGASTORM_OMEGASTORM: untyped
5722
- PSIONICSHOCKWAVE_PSIONICSHOCKWAVE: untyped
5723
- HYBRIDFAOESTUN_HYBRIDFAOESTUN: untyped
5724
- SUMMONMERCENARIES_HIREKELMORIANMINERS: untyped
5725
- SUMMONMERCENARIES_HIREDEVILDOGS: untyped
5726
- SUMMONMERCENARIES_HIRESPARTANCOMPANY: untyped
5727
- SUMMONMERCENARIES_HIREHAMMERSECURITIES: untyped
5728
- SUMMONMERCENARIES_HIRESIEGEBREAKERS: untyped
5729
- SUMMONMERCENARIES_HIREHELSANGELS: untyped
5730
- SUMMONMERCENARIES_HIREDUSKWING: untyped
5731
- SUMMONMERCENARIES_HIREDUKESREVENGE: untyped
5732
- SUMMONMERCENARIESPH_HIREKELMORIANMINERSPH: untyped
5733
- ENERGYNOVA_ENERGYNOVA: untyped
5734
- THEMOROSDEVICE_THEMOROSDEVICE: untyped
5735
- TOSSGRENADE_TOSSGRENADE: untyped
5736
- VOIDSEEKERTRANSPORT_MEDIVACLOAD: untyped
5737
- VOIDSEEKERTRANSPORT_MEDIVACUNLOADALL: untyped
5738
- TERRANBUILDDROP_SUPPLYDEPOTDROP: untyped
5739
- TERRANBUILDDROP_CANCEL: untyped
5740
- ODINNUCLEARSTRIKE_ODINNUKECALLDOWN: untyped
5741
- ODINNUCLEARSTRIKE_CANCEL: untyped
5742
- ODINWRECKAGE_ODIN: untyped
5743
- RESEARCHLABTRANSPORT_HUTLOAD: untyped
5744
- RESEARCHLABTRANSPORT_HUTUNLOADALL: untyped
5745
- COLONYSHIPTRANSPORT_MEDIVACLOAD: untyped
5746
- COLONYSHIPTRANSPORT_MEDIVACUNLOADALL: untyped
5747
- COLONYINFESTATION_COLONYINFESTATION: untyped
5748
- DOMINATION_DOMINATION: untyped
5749
- DOMINATION_CANCEL: untyped
5750
- KARASSPLASMASURGE_KARASSPLASMASURGE: untyped
5751
- KARASSPSISTORM_PSISTORM: untyped
5752
- HYBRIDBLINK_ZERATULBLINK: untyped
5753
- HYBRIDCPLASMABLAST_HYBRIDCPLASMABLAST: untyped
5754
- HEROARMNUKE_NUKEARM: untyped
5755
- HERONUCLEARSTRIKE_NUKECALLDOWN: untyped
5756
- HERONUCLEARSTRIKE_CANCEL: untyped
5757
- ODINBARRAGE_ODINBARRAGE: untyped
5758
- ODINBARRAGE_CANCEL: untyped
5759
- PURIFIERTOGGLEPOWER_PURIFIERPOWERDOWN: untyped
5760
- PURIFIERTOGGLEPOWER_PURIFIERPOWERUP: untyped
5761
- PHASEMINEBLAST_PHASEMINEBLAST: untyped
5762
- VOIDSEEKERPHASEMINEBLAST_PHASEMINEBLAST: untyped
5763
- TRANSPORTTRUCKTRANSPORT_TRANSPORTTRUCKLOAD: untyped
5764
- TRANSPORTTRUCKTRANSPORT_TRANSPORTTRUCKUNLOADALL: untyped
5765
- VAL03QUEENOFBLADESBURROW_BURROWDOWN: untyped
5766
- VAL03QUEENOFBLADESDEEPTUNNEL_DEEPTUNNEL: untyped
5767
- VAL03QUEENOFBLADESUNBURROW_BURROWUP: untyped
5768
- LOKIYAMATO_LOKIYAMATOGUN: untyped
5769
- DUKESREVENGEYAMATO_YAMATOGUN: untyped
5770
- ZERATULBLINK_ZERATULBLINK: untyped
5771
- ROGUEGHOSTCLOAK_CLOAKONSPECTRE: untyped
5772
- ROGUEGHOSTCLOAK_CLOAKOFF: untyped
5773
- VULTURESPIDERMINES_SPIDERMINE: untyped
5774
- VULTUREQUEUE3_CANCEL: untyped
5775
- VULTUREQUEUE3_CANCELSLOT: untyped
5776
- SUPERWARPGATETRAIN_ZEALOT: untyped
5777
- SUPERWARPGATETRAIN_STALKER: untyped
5778
- SUPERWARPGATETRAIN_IMMORTAL: untyped
5779
- SUPERWARPGATETRAIN_HIGHTEMPLAR: untyped
5780
- SUPERWARPGATETRAIN_DARKTEMPLAR: untyped
5781
- SUPERWARPGATETRAIN_SENTRY: untyped
5782
- SUPERWARPGATETRAIN_CARRIER: untyped
5783
- SUPERWARPGATETRAIN_PHOENIX: untyped
5784
- SUPERWARPGATETRAIN_VOIDRAY: untyped
5785
- SUPERWARPGATETRAIN_ARCHON: untyped
5786
- SUPERWARPGATETRAIN_WARPINZERATUL: untyped
5787
- SUPERWARPGATETRAIN_WARPINURUN: untyped
5788
- SUPERWARPGATETRAIN_WARPINMOHANDAR: untyped
5789
- SUPERWARPGATETRAIN_WARPINSELENDIS: untyped
5790
- SUPERWARPGATETRAIN_WARPINSCOUT: untyped
5791
- SUPERWARPGATETRAIN_COLOSSUS: untyped
5792
- SUPERWARPGATETRAIN_WARPPRISM: untyped
5793
- BURROWOMEGALISKDOWN_BURROWDOWN: untyped
5794
- BURROWOMEGALISKUP_BURROWUP: untyped
5795
- BURROWINFESTEDABOMINATIONDOWN_BURROWDOWN: untyped
5796
- BURROWINFESTEDABOMINATIONUP_BURROWUP: untyped
5797
- BURROWHUNTERKILLERDOWN_BURROWDOWN: untyped
5798
- BURROWHUNTERKILLERDOWN_CANCEL: untyped
5799
- BURROWHUNTERKILLERUP_BURROWUP: untyped
5800
- NOVASNIPE_NOVASNIPE: untyped
5801
- VORTEXPURIFIER_VORTEX: untyped
5802
- TALDARIMVORTEX_VORTEX: untyped
5803
- PURIFIERPLANETCRACKER_PLANETCRACKER: untyped
5804
- BURROWINFESTEDTERRANCAMPAIGNDOWN_BURROWDOWN: untyped
5805
- BURROWINFESTEDTERRANCAMPAIGNUP_BURROWUP: untyped
5806
- INFESTEDMONSTERTRAIN_INFESTEDCIVILIAN: untyped
5807
- INFESTEDMONSTERTRAIN_INFESTEDTERRANCAMPAIGN: untyped
5808
- INFESTEDMONSTERTRAIN_INFESTEDABOMINATION: untyped
5809
- BIODOMETRANSPORT_BIODOMELOAD: untyped
5810
- BIODOMETRANSPORT_BIODOMEUNLOADALL: untyped
5811
- ATTACKALLOWSINVULNERABLE_ATTACKALLOWSINVULNERABLE: untyped
5812
- ATTACKALLOWSINVULNERABLE_ATTACKTOWARDS: untyped
5813
- ATTACKALLOWSINVULNERABLE_ATTACKBARRAGE: untyped
5814
- ZERATULSTUN_ZERATULSTUN: untyped
5815
- WRAITHCLOAK_CLOAKOFF: untyped
5816
- BARRACKSTECHREACTORMORPH_TECHLABBARRACKS: untyped
5817
- FACTORYTECHREACTORMORPH_TECHLABFACTORY: untyped
5818
- STARPORTTECHREACTORMORPH_TECHLABSTARPORT: untyped
5819
- SS_FIGHTERSHOOTING_SS_SHOOTING: untyped
5820
- RAYNORC4_PLANTC4CHARGE: untyped
5821
- DUKESREVENGEDEFENSIVEMATRIX_DEFENSIVEMATRIX: untyped
5822
- DUKESREVENGEMISSILEPODS_MISSILEPODS: untyped
5823
- THORWRECKAGE_THOR: untyped
5824
- THORREBORN_THOR: untyped
5825
- THORREBORN_CANCEL: untyped
5826
- SPECTRENUKE_SPECTRENUKECALLDOWN: untyped
5827
- SPECTRENUKE_CANCEL: untyped
5828
- SPECTRENUKESILOARMMAGAZINE_SPECTRENUKEARM: untyped
5829
- COLONISTSHIPLIFTOFF_LIFT: untyped
5830
- COLONISTSHIPLAND_LAND: untyped
5831
- BIODOMECOMMANDLIFTOFF_LIFT: untyped
5832
- BIODOMECOMMANDLAND_LAND: untyped
5833
- HERCULESLIFTOFF_LIFT: untyped
5834
- HERCULESLAND_HERCULESLAND: untyped
5835
- LIGHTBRIDGEOFF_LIGHTBRIDGEOFF: untyped
5836
- LIGHTBRIDGEON_LIGHTBRIDGEON: untyped
5837
- LIBRARYDOWN_LIBRARYDOWN: untyped
5838
- LIBRARYUP_LIBRARYUP: untyped
5839
- TEMPLEDOORDOWN_TEMPLEDOORDOWN: untyped
5840
- TEMPLEDOORUP_TEMPLEDOORUP: untyped
5841
- TEMPLEDOORDOWNURDL_TEMPLEDOORDOWNURDL: untyped
5842
- TEMPLEDOORUPURDL_TEMPLEDOORUPURDL: untyped
5843
- PSYTROUSOXIDE_PSYTROUSOXIDEON: untyped
5844
- PSYTROUSOXIDE_PSYTROUSOXIDEOFF: untyped
5845
- BIOPLASMIDDISCHARGE_BIOPLASMIDDISCHARGE: untyped
5846
- WRECKINGCREWASSAULTMODE_ASSAULTMODE: untyped
5847
- WRECKINGCREWFIGHTERMODE_FIGHTERMODE: untyped
5848
- BIOSTASIS_BIOSTASIS: untyped
5849
- COLONISTTRANSPORTTRANSPORT_COLONISTTRANSPORTLOAD: untyped
5850
- COLONISTTRANSPORTTRANSPORT_COLONISTTRANSPORTUNLOADALL: untyped
5851
- DROPTOSUPPLYDEPOT_RAISE: untyped
5852
- REFINERYTOAUTOMATEDREFINERY_RAISE: untyped
5853
- HELIOSCRASHMORPH_CRASHMORPH: untyped
5854
- NANOREPAIR_HEAL: untyped
5855
- PICKUP_PICKUP: untyped
5856
- PICKUPARCADE_PICKUP: untyped
5857
- PICKUPGAS100_PICKUPGAS100: untyped
5858
- PICKUPMINERALS100_PICKUPMINERALS100: untyped
5859
- TAURENSTIMPACK_STIM: untyped
5860
- TESTREVIVE_SCV: untyped
5861
- TESTINTERACT_DESIGNATE: untyped
5862
- CLIFFDOOROPEN0_SPACEPLATFORMDOOROPEN: untyped
5863
- CLIFFDOORCLOSE0_SPACEPLATFORMDOORCLOSE: untyped
5864
- CLIFFDOOROPEN1_SPACEPLATFORMDOOROPEN: untyped
5865
- CLIFFDOORCLOSE1_SPACEPLATFORMDOORCLOSE: untyped
5866
- DESTRUCTIBLEGATEDIAGONALBLURLOWERED_GATEOPEN: untyped
5867
- DESTRUCTIBLEGATEDIAGONALULBRLOWERED_GATEOPEN: untyped
5868
- DESTRUCTIBLEGATESTRAIGHTHORIZONTALBFLOWERED_GATEOPEN: untyped
5869
- DESTRUCTIBLEGATESTRAIGHTHORIZONTALLOWERED_GATEOPEN: untyped
5870
- DESTRUCTIBLEGATESTRAIGHTVERTICALLFLOWERED_GATEOPEN: untyped
5871
- DESTRUCTIBLEGATESTRAIGHTVERTICALLOWERED_GATEOPEN: untyped
5872
- DESTRUCTIBLEGATEDIAGONALBLUR_GATECLOSE: untyped
5873
- DESTRUCTIBLEGATEDIAGONALULBR_GATECLOSE: untyped
5874
- DESTRUCTIBLEGATESTRAIGHTHORIZONTALBF_GATECLOSE: untyped
5875
- DESTRUCTIBLEGATESTRAIGHTHORIZONTAL_GATECLOSE: untyped
5876
- DESTRUCTIBLEGATESTRAIGHTVERTICALLF_GATECLOSE: untyped
5877
- DESTRUCTIBLEGATESTRAIGHTVERTICAL_GATECLOSE: untyped
5878
- TESTLEARN_TESTLEARN: untyped
5879
- TESTLEVELEDSPELL_YAMATOGUN: untyped
5880
- METALGATEDIAGONALBLURLOWERED_GATEOPEN: untyped
5881
- METALGATEDIAGONALULBRLOWERED_GATEOPEN: untyped
5882
- METALGATESTRAIGHTHORIZONTALBFLOWERED_GATEOPEN: untyped
5883
- METALGATESTRAIGHTHORIZONTALLOWERED_GATEOPEN: untyped
5884
- METALGATESTRAIGHTVERTICALLFLOWERED_GATEOPEN: untyped
5885
- METALGATESTRAIGHTVERTICALLOWERED_GATEOPEN: untyped
5886
- METALGATEDIAGONALBLUR_GATECLOSE: untyped
5887
- METALGATEDIAGONALULBR_GATECLOSE: untyped
5888
- METALGATESTRAIGHTHORIZONTALBF_GATECLOSE: untyped
5889
- METALGATESTRAIGHTHORIZONTAL_GATECLOSE: untyped
5890
- METALGATESTRAIGHTVERTICALLF_GATECLOSE: untyped
5891
- METALGATESTRAIGHTVERTICAL_GATECLOSE: untyped
5892
- SECURITYGATEDIAGONALBLURLOWERED_GATEOPEN: untyped
5893
- SECURITYGATEDIAGONALULBRLOWERED_GATEOPEN: untyped
5894
- SECURITYGATESTRAIGHTHORIZONTALBFLOWERED_GATEOPEN: untyped
5895
- SECURITYGATESTRAIGHTHORIZONTALLOWERED_GATEOPEN: untyped
5896
- SECURITYGATESTRAIGHTVERTICALLFLOWERED_GATEOPEN: untyped
5897
- SECURITYGATESTRAIGHTVERTICALLOWERED_GATEOPEN: untyped
5898
- SECURITYGATEDIAGONALBLUR_GATECLOSE: untyped
5899
- SECURITYGATEDIAGONALULBR_GATECLOSE: untyped
5900
- SECURITYGATESTRAIGHTHORIZONTALBF_GATECLOSE: untyped
5901
- SECURITYGATESTRAIGHTHORIZONTAL_GATECLOSE: untyped
5902
- SECURITYGATESTRAIGHTVERTICALLF_GATECLOSE: untyped
5903
- SECURITYGATESTRAIGHTVERTICAL_GATECLOSE: untyped
5904
- CHANGESHRINETERRAN_CHANGESHRINETERRAN: untyped
5905
- CHANGESHRINEPROTOSS_CHANGESHRINEPROTOSS: untyped
5906
- SPECTREHOLDFIRE_SPECTREHOLDFIRE: untyped
5907
- SPECTREWEAPONSFREE_WEAPONSFREE: untyped
5908
- GWALEARN_TESTLEARN: untyped
5909
- LIGHTBRIDGEOFFTOPRIGHT_LIGHTBRIDGEOFF: untyped
5910
- LIGHTBRIDGEONTOPRIGHT_LIGHTBRIDGEON: untyped
5911
- TESTHEROGRAB_GRABZERGLING: untyped
5912
- TESTHEROTHROW_THROWZERGLING: untyped
5913
- TESTHERODEBUGMISSILEABILITY_TESTHERODEBUGMISSILEABILITY: untyped
5914
- TESTHERODEBUGTRACKINGABILITY_TESTHERODEBUGTRACKINGABILITY: untyped
5915
- TESTHERODEBUGTRACKINGABILITY_CANCEL: untyped
5916
5479
  CANCEL: untyped
5917
5480
  HALT: untyped
5918
5481
  BURROWDOWN: untyped
@@ -5924,7 +5487,6 @@ module Api
5924
5487
  HARVEST_RETURN: untyped
5925
5488
  LOAD: untyped
5926
5489
  UNLOADALLAT: untyped
5927
- UNLOADUNIT: untyped
5928
5490
  CANCEL_LAST: untyped
5929
5491
  CANCEL_SLOT: untyped
5930
5492
  RALLY_UNITS: untyped
@@ -5946,21 +5508,6 @@ module Api
5946
5508
  BEHAVIOR_HOLDFIREOFF: untyped
5947
5509
  RALLY_WORKERS: untyped
5948
5510
  BUILD_CREEPTUMOR: untyped
5949
- RESEARCH_PROTOSSAIRARMOR: untyped
5950
- RESEARCH_PROTOSSAIRWEAPONS: untyped
5951
- RESEARCH_PROTOSSGROUNDARMOR: untyped
5952
- RESEARCH_PROTOSSGROUNDWEAPONS: untyped
5953
- RESEARCH_PROTOSSSHIELDS: untyped
5954
- RESEARCH_TERRANINFANTRYARMOR: untyped
5955
- RESEARCH_TERRANINFANTRYWEAPONS: untyped
5956
- RESEARCH_TERRANSHIPWEAPONS: untyped
5957
- RESEARCH_TERRANVEHICLEANDSHIPPLATING: untyped
5958
- RESEARCH_TERRANVEHICLEWEAPONS: untyped
5959
- RESEARCH_ZERGFLYERARMOR: untyped
5960
- RESEARCH_ZERGFLYERATTACK: untyped
5961
- RESEARCH_ZERGGROUNDARMOR: untyped
5962
- RESEARCH_ZERGMELEEWEAPONS: untyped
5963
- RESEARCH_ZERGMISSILEWEAPONS: untyped
5964
5511
  CANCEL_VOIDRAYPRISMATICALIGNMENT: untyped
5965
5512
  RESEARCH_ADAPTIVETALONS: untyped
5966
5513
  LURKERDENRESEARCH_RESEARCHLURKERRANGE: untyped
@@ -5969,27 +5516,19 @@ module Api
5969
5516
  MORPH_OVERSIGHTMODE: untyped
5970
5517
  MORPH_OVERSEERMODE: untyped
5971
5518
  EFFECT_INTERFERENCEMATRIX: untyped
5972
- EFFECT_REPAIRDRONE: untyped
5973
5519
  EFFECT_REPAIR_REPAIRDRONE: untyped
5974
5520
  EFFECT_ANTIARMORMISSILE: untyped
5975
5521
  EFFECT_CHRONOBOOSTENERGYCOST: untyped
5976
5522
  EFFECT_MASSRECALL_NEXUS: untyped
5977
- NEXUSSHIELDRECHARGE_NEXUSSHIELDRECHARGE: untyped
5978
- NEXUSSHIELDRECHARGEONPYLON_NEXUSSHIELDRECHARGEONPYLON: untyped
5979
5523
  INFESTORENSNARE_INFESTORENSNARE: untyped
5980
- EFFECT_RESTORE: untyped
5981
- NEXUSSHIELDOVERCHARGE_NEXUSSHIELDOVERCHARGE: untyped
5982
- NEXUSSHIELDOVERCHARGEOFF_NEXUSSHIELDOVERCHARGEOFF: untyped
5983
5524
  ATTACK_BATTLECRUISER: untyped
5984
5525
  BATTLECRUISERATTACK_ATTACKTOWARDS: untyped
5985
5526
  BATTLECRUISERATTACK_ATTACKBARRAGE: untyped
5986
- BATTLECRUISERATTACKEVALUATOR_MOTHERSHIPCOREATTACK: untyped
5987
5527
  MOVE_BATTLECRUISER: untyped
5988
5528
  PATROL_BATTLECRUISER: untyped
5989
5529
  HOLDPOSITION_BATTLECRUISER: untyped
5990
5530
  BATTLECRUISERMOVE_ACQUIREMOVE: untyped
5991
5531
  BATTLECRUISERMOVE_TURN: untyped
5992
- BATTLECRUISERSTOPEVALUATOR_STOP: untyped
5993
5532
  STOP_BATTLECRUISER: untyped
5994
5533
  BATTLECRUISERSTOP_HOLDFIRE: untyped
5995
5534
  BATTLECRUISERSTOP_CHEER: untyped
@@ -5999,41 +5538,21 @@ module Api
5999
5538
  HOLDPOSITION: untyped
6000
5539
  MOVE: untyped
6001
5540
  PATROL: untyped
6002
- LOADOUTSPRAY_LOADOUTSPRAY1: untyped
6003
- LOADOUTSPRAY_LOADOUTSPRAY2: untyped
6004
- LOADOUTSPRAY_LOADOUTSPRAY3: untyped
6005
- LOADOUTSPRAY_LOADOUTSPRAY4: untyped
6006
- LOADOUTSPRAY_LOADOUTSPRAY5: untyped
6007
- LOADOUTSPRAY_LOADOUTSPRAY6: untyped
6008
- LOADOUTSPRAY_LOADOUTSPRAY7: untyped
6009
- LOADOUTSPRAY_LOADOUTSPRAY8: untyped
6010
- LOADOUTSPRAY_LOADOUTSPRAY9: untyped
6011
- LOADOUTSPRAY_LOADOUTSPRAY10: untyped
6012
- LOADOUTSPRAY_LOADOUTSPRAY11: untyped
6013
- LOADOUTSPRAY_LOADOUTSPRAY12: untyped
6014
- LOADOUTSPRAY_LOADOUTSPRAY13: untyped
6015
- LOADOUTSPRAY_LOADOUTSPRAY14: untyped
5541
+ UNLOADUNIT: untyped
5542
+ MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPLEFTGREEN_MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPLEFTGREEN: untyped
6016
5543
  MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPLEFTGREEN_CANCEL: untyped
5544
+ MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPRIGHTGREEN_MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPRIGHTGREEN: untyped
6017
5545
  MORPHTOCOLLAPSIBLEROCKTOWERDEBRISRAMPRIGHTGREEN_CANCEL: untyped
6018
- BATTERYOVERCHARGE_BATTERYOVERCHARGE: untyped
5546
+ HYDRALISKFRENZY_HYDRALISKFRENZY: untyped
6019
5547
  AMORPHOUSARMORCLOUD_AMORPHOUSARMORCLOUD: untyped
6020
5548
  SHIELDBATTERYRECHARGEEX5_SHIELDBATTERYRECHARGE: untyped
6021
5549
  SHIELDBATTERYRECHARGEEX5_STOP: untyped
6022
5550
  MORPHTOBANELING_BANELING: untyped
6023
5551
  MORPHTOBANELING_CANCEL: untyped
6024
5552
  MOTHERSHIPCLOAK_ORACLECLOAKFIELD: untyped
6025
-
6026
- # sord omit - no YARD return type given, using untyped
6027
- def self._250MMSTRIKECANNONS_250MMSTRIKECANNONS: () -> untyped
6028
-
6029
- # sord omit - no YARD return type given, using untyped
6030
- def self._250MMSTRIKECANNONS_CANCEL: () -> untyped
6031
-
6032
- # sord omit - no YARD return type given, using untyped
6033
- def self._330MMBARRAGECANNONS_330MMBARRAGECANNONS: () -> untyped
6034
-
6035
- # sord omit - no YARD return type given, using untyped
6036
- def self._330MMBARRAGECANNONS_CANCEL: () -> untyped
5553
+ ENERGYRECHARGE_ENERGYRECHARGE: untyped
5554
+ SALVAGEEFFECT_SALVAGE: untyped
5555
+ WORKERSTOPIDLEABILITYVESPENE_GATHER: untyped
6037
5556
 
6038
5557
  # Returns an array of all constants
6039
5558
  def self.ids: () -> ::Array[Integer]
@@ -6051,7 +5570,6 @@ module Api
6051
5570
 
6052
5571
  # Constant reference of Upgrade ids
6053
5572
  module UpgradeId
6054
- NULL: untyped
6055
5573
  CARRIERLAUNCHSPEEDUPGRADE: untyped
6056
5574
  GLIALRECONSTITUTION: untyped
6057
5575
  TUNNELINGCLAWS: untyped
@@ -6069,7 +5587,6 @@ module Api
6069
5587
  STIMPACK: untyped
6070
5588
  SHIELDWALL: untyped
6071
5589
  PUNISHERGRENADES: untyped
6072
- SIEGETECH: untyped
6073
5590
  HIGHCAPACITYBARRELS: untyped
6074
5591
  BANSHEECLOAK: untyped
6075
5592
  MEDIVACCADUCEUSREACTOR: untyped
@@ -6077,7 +5594,6 @@ module Api
6077
5594
  HUNTERSEEKER: untyped
6078
5595
  DURABLEMATERIALS: untyped
6079
5596
  PERSONALCLOAKING: untyped
6080
- GHOSTMOEBIUSREACTOR: untyped
6081
5597
  TERRANVEHICLEARMORSLEVEL1: untyped
6082
5598
  TERRANVEHICLEARMORSLEVEL2: untyped
6083
5599
  TERRANVEHICLEARMORSLEVEL3: untyped
@@ -6102,7 +5618,6 @@ module Api
6102
5618
  OBSERVERGRAVITICBOOSTER: untyped
6103
5619
  GRAVITICDRIVE: untyped
6104
5620
  EXTENDEDTHERMALLANCE: untyped
6105
- HIGHTEMPLARKHAYDARINAMULET: untyped
6106
5621
  PSISTORMTECH: untyped
6107
5622
  ZERGMELEEWEAPONSLEVEL1: untyped
6108
5623
  ZERGMELEEWEAPONSLEVEL2: untyped
@@ -6118,17 +5633,14 @@ module Api
6118
5633
  BURROW: untyped
6119
5634
  ZERGLINGATTACKSPEED: untyped
6120
5635
  ZERGLINGMOVEMENTSPEED: untyped
6121
- HYDRALISKSPEED: untyped
6122
5636
  ZERGFLYERWEAPONSLEVEL1: untyped
6123
5637
  ZERGFLYERWEAPONSLEVEL2: untyped
6124
5638
  ZERGFLYERWEAPONSLEVEL3: untyped
6125
5639
  ZERGFLYERARMORSLEVEL1: untyped
6126
5640
  ZERGFLYERARMORSLEVEL2: untyped
6127
5641
  ZERGFLYERARMORSLEVEL3: untyped
6128
- INFESTORENERGYUPGRADE: untyped
6129
5642
  CENTRIFICALHOOKS: untyped
6130
5643
  BATTLECRUISERENABLESPECIALIZATIONS: untyped
6131
- BATTLECRUISERBEHEMOTHREACTOR: untyped
6132
5644
  PROTOSSAIRWEAPONSLEVEL1: untyped
6133
5645
  PROTOSSAIRWEAPONSLEVEL2: untyped
6134
5646
  PROTOSSAIRWEAPONSLEVEL3: untyped
@@ -6140,51 +5652,24 @@ module Api
6140
5652
  CHARGE: untyped
6141
5653
  BLINKTECH: untyped
6142
5654
  ANABOLICSYNTHESIS: untyped
6143
- OBVERSEINCUBATION: untyped
6144
- VIKINGJOTUNBOOSTERS: untyped
6145
- ORGANICCARAPACE: untyped
6146
- INFESTORPERISTALSIS: untyped
6147
- ABDOMINALFORTITUDE: untyped
6148
- HYDRALISKSPEEDUPGRADE: untyped
6149
- BANELINGBURROWMOVE: untyped
6150
- COMBATDRUGS: untyped
6151
- STRIKECANNONS: untyped
6152
5655
  TRANSFORMATIONSERVOS: untyped
6153
5656
  PHOENIXRANGEUPGRADE: untyped
6154
5657
  TEMPESTRANGEUPGRADE: untyped
6155
5658
  NEURALPARASITE: untyped
6156
5659
  LOCUSTLIFETIMEINCREASE: untyped
6157
- ULTRALISKBURROWCHARGEUPGRADE: untyped
6158
- ORACLEENERGYUPGRADE: untyped
6159
- RESTORESHIELDS: untyped
6160
- PROTOSSHEROSHIPWEAPON: untyped
6161
- PROTOSSHEROSHIPDETECTOR: untyped
6162
- PROTOSSHEROSHIPSPELL: untyped
6163
- REAPERJUMP: untyped
6164
- INCREASEDRANGE: untyped
6165
- ZERGBURROWMOVE: untyped
6166
- ANIONPULSECRYSTALS: untyped
6167
5660
  TERRANVEHICLEANDSHIPWEAPONSLEVEL1: untyped
6168
5661
  TERRANVEHICLEANDSHIPWEAPONSLEVEL2: untyped
6169
5662
  TERRANVEHICLEANDSHIPWEAPONSLEVEL3: untyped
6170
5663
  TERRANVEHICLEANDSHIPARMORSLEVEL1: untyped
6171
5664
  TERRANVEHICLEANDSHIPARMORSLEVEL2: untyped
6172
5665
  TERRANVEHICLEANDSHIPARMORSLEVEL3: untyped
6173
- FLYINGLOCUSTS: untyped
6174
5666
  ROACHSUPPLY: untyped
6175
5667
  IMMORTALREVIVE: untyped
6176
5668
  DRILLCLAWS: untyped
6177
5669
  CYCLONELOCKONRANGEUPGRADE: untyped
6178
- CYCLONEAIRUPGRADE: untyped
6179
5670
  LIBERATORMORPH: untyped
6180
- ADEPTSHIELDUPGRADE: untyped
6181
5671
  LURKERRANGE: untyped
6182
- IMMORTALBARRIER: untyped
6183
- ADEPTKILLBOUNCE: untyped
6184
5672
  ADEPTPIERCINGATTACK: untyped
6185
- CINEMATICMODE: untyped
6186
- CURSORDEBUG: untyped
6187
- MAGFIELDLAUNCHERS: untyped
6188
5673
  EVOLVEGROOVEDSPINES: untyped
6189
5674
  EVOLVEMUSCULARAUGMENTS: untyped
6190
5675
  BANSHEESPEED: untyped
@@ -6193,171 +5678,22 @@ module Api
6193
5678
  MEDIVACINCREASESPEEDBOOST: untyped
6194
5679
  LIBERATORAGRANGEUPGRADE: untyped
6195
5680
  DARKTEMPLARBLINKUPGRADE: untyped
6196
- RAVAGERRANGE: untyped
6197
- RAVENDAMAGEUPGRADE: untyped
6198
5681
  CYCLONELOCKONDAMAGEUPGRADE: untyped
6199
- ARESCLASSWEAPONSSYSTEMVIKING: untyped
6200
- AUTOHARVESTER: untyped
6201
- HYBRIDCPLASMAUPGRADEHARD: untyped
6202
- HYBRIDCPLASMAUPGRADEINSANE: untyped
6203
- INTERCEPTORLIMIT4: untyped
6204
- INTERCEPTORLIMIT6: untyped
6205
- NOTPOSSIBLESIEGEMODE: untyped
6206
- NEOSTEELFRAME_2: untyped
6207
- NEOSTEELANDSHRIKETURRETICONUPGRADE: untyped
6208
- OCULARIMPLANTS: untyped
6209
- CROSSSPECTRUMDAMPENERS: untyped
6210
- ORBITALSTRIKE: untyped
6211
- CLUSTERBOMB: untyped
6212
- SHAPEDHULL: untyped
6213
- SPECTRETOOLTIPUPGRADE: untyped
6214
- ULTRACAPACITORS: untyped
6215
- VANADIUMPLATING: untyped
6216
- COMMANDCENTERREACTOR: untyped
6217
- REGENERATIVEBIOSTEEL: untyped
6218
- CELLULARREACTORS: untyped
6219
- BANSHEECLOAKEDDAMAGE: untyped
6220
- DISTORTIONBLASTERS: untyped
6221
- EMPTOWER: untyped
6222
- SUPPLYDEPOTDROP: untyped
6223
- HIVEMINDEMULATOR: untyped
6224
- FORTIFIEDBUNKERCARAPACE: untyped
6225
- PREDATOR: untyped
6226
- SCIENCEVESSEL: untyped
6227
- DUALFUSIONWELDERS: untyped
6228
- ADVANCEDCONSTRUCTION: untyped
6229
- ADVANCEDMEDICTRAINING: untyped
6230
- PROJECTILEACCELERATORS: untyped
6231
- REINFORCEDSUPERSTRUCTURE: untyped
6232
- MULE: untyped
6233
- ORBITALRELAY: untyped
6234
- RAZORWIRE: untyped
6235
- ADVANCEDHEALINGAI: untyped
6236
- TWINLINKEDFLAMETHROWERS: untyped
6237
- NANOCONSTRUCTOR: untyped
6238
- CERBERUSMINES: untyped
6239
- HYPERFLUXOR: untyped
6240
- TRILITHIUMPOWERCELLS: untyped
6241
- PERMANENTCLOAKGHOST: untyped
6242
- PERMANENTCLOAKSPECTRE: untyped
6243
- ULTRASONICPULSE: untyped
6244
- SURVIVALPODS: untyped
6245
- ENERGYSTORAGE: untyped
6246
- FULLBORECANISTERAMMO: untyped
6247
- CAMPAIGNJOTUNBOOSTERS: untyped
6248
- MICROFILTERING: untyped
6249
- PARTICLECANNONAIR: untyped
6250
- VULTUREAUTOREPAIR: untyped
6251
- PSIDISRUPTOR: untyped
6252
- SCIENCEVESSELENERGYMANIPULATION: untyped
6253
- SCIENCEVESSELPLASMAWEAPONRY: untyped
6254
- SHOWGATLINGGUN: untyped
6255
- TECHREACTOR: untyped
6256
- TECHREACTORAI: untyped
6257
- TERRANDEFENSERANGEBONUS: untyped
6258
- X88TNAPALMUPGRADE: untyped
6259
- HURRICANEMISSILES: untyped
6260
- MECHANICALREBIRTH: untyped
6261
- MARINESTIMPACK: untyped
6262
- DARKTEMPLARTACTICS: untyped
6263
- CLUSTERWARHEADS: untyped
6264
- CLOAKDISTORTIONFIELD: untyped
6265
- DEVASTATORMISSILES: untyped
6266
- DISTORTIONTHRUSTERS: untyped
6267
- DYNAMICPOWERROUTING: untyped
6268
- IMPALERROUNDS: untyped
6269
- KINETICFIELDS: untyped
6270
- BURSTCAPACITORS: untyped
6271
- HAILSTORMMISSILEPODS: untyped
6272
- RAPIDDEPLOYMENT: untyped
6273
- REAPERSTIMPACK: untyped
6274
- REAPERD8CHARGE: untyped
6275
- TYCHUS05BATTLECRUISERPENETRATION: untyped
6276
- VIRALPLASMA: untyped
6277
- FIREBATJUGGERNAUTPLATING: untyped
6278
- MULTILOCKTARGETINGSYSTEMS: untyped
6279
- TURBOCHARGEDENGINES: untyped
6280
- DISTORTIONSENSORS: untyped
6281
- INFERNALPREIGNITERS: untyped
6282
- HELLIONCAMPAIGNINFERNALPREIGNITER: untyped
6283
- NAPALMFUELTANKS: untyped
6284
- AUXILIARYMEDBOTS: untyped
6285
- JUGGERNAUTPLATING: untyped
6286
- MARAUDERLIFEBOOST: untyped
6287
- COMBATSHIELD: untyped
6288
- REAPERU238ROUNDS: untyped
6289
- MAELSTROMROUNDS: untyped
6290
- SIEGETANKSHAPEDBLAST: untyped
6291
- TUNGSTENSPIKES: untyped
6292
- BEARCLAWNOZZLES: untyped
6293
- NANOBOTINJECTORS: untyped
6294
- STABILIZERMEDPACKS: untyped
6295
- HALOROCKETS: untyped
6296
- SCAVENGINGSYSTEMS: untyped
6297
- EXTRAMINES: untyped
6298
- ARESCLASSWEAPONSSYSTEM: untyped
6299
- WHITENAPALM: untyped
6300
- VIRALMUNITIONS: untyped
6301
- JACKHAMMERCONCUSSIONGRENADES: untyped
6302
- FIRESUPPRESSIONSYSTEMS: untyped
6303
- FLARERESEARCH: untyped
6304
- MODULARCONSTRUCTION: untyped
6305
- EXPANDEDHULL: untyped
6306
- SHRIKETURRET: untyped
6307
- MICROFUSIONREACTORS: untyped
6308
- WRAITHCLOAK: untyped
6309
- SINGULARITYCHARGE: untyped
6310
- GRAVITICTHRUSTERS: untyped
6311
- YAMATOCANNON: untyped
6312
- DEFENSIVEMATRIX: untyped
6313
- DARKPROTOSS: untyped
6314
- TERRANINFANTRYWEAPONSULTRACAPACITORSLEVEL1: untyped
6315
- TERRANINFANTRYWEAPONSULTRACAPACITORSLEVEL2: untyped
6316
- TERRANINFANTRYWEAPONSULTRACAPACITORSLEVEL3: untyped
6317
- TERRANINFANTRYARMORSVANADIUMPLATINGLEVEL1: untyped
6318
- TERRANINFANTRYARMORSVANADIUMPLATINGLEVEL2: untyped
6319
- TERRANINFANTRYARMORSVANADIUMPLATINGLEVEL3: untyped
6320
- TERRANVEHICLEWEAPONSULTRACAPACITORSLEVEL1: untyped
6321
- TERRANVEHICLEWEAPONSULTRACAPACITORSLEVEL2: untyped
6322
- TERRANVEHICLEWEAPONSULTRACAPACITORSLEVEL3: untyped
6323
- TERRANVEHICLEARMORSVANADIUMPLATINGLEVEL1: untyped
6324
- TERRANVEHICLEARMORSVANADIUMPLATINGLEVEL2: untyped
6325
- TERRANVEHICLEARMORSVANADIUMPLATINGLEVEL3: untyped
6326
- TERRANSHIPWEAPONSULTRACAPACITORSLEVEL1: untyped
6327
- TERRANSHIPWEAPONSULTRACAPACITORSLEVEL2: untyped
6328
- TERRANSHIPWEAPONSULTRACAPACITORSLEVEL3: untyped
6329
- TERRANSHIPARMORSVANADIUMPLATINGLEVEL1: untyped
6330
- TERRANSHIPARMORSVANADIUMPLATINGLEVEL2: untyped
6331
- TERRANSHIPARMORSVANADIUMPLATINGLEVEL3: untyped
6332
- HIREKELMORIANMINERSPH: untyped
6333
- HIREDEVILDOGSPH: untyped
6334
- HIRESPARTANCOMPANYPH: untyped
6335
- HIREHAMMERSECURITIESPH: untyped
6336
- HIRESIEGEBREAKERSPH: untyped
6337
- HIREHELSANGELSPH: untyped
6338
- HIREDUSKWINGPH: untyped
6339
- HIREDUKESREVENGE: untyped
6340
- TOSHEASYMODE: untyped
6341
5682
  VOIDRAYSPEEDUPGRADE: untyped
6342
5683
  SMARTSERVOS: untyped
6343
5684
  ARMORPIERCINGROCKETS: untyped
6344
5685
  CYCLONERAPIDFIRELAUNCHERS: untyped
6345
5686
  RAVENENHANCEDMUNITIONS: untyped
6346
5687
  DIGGINGCLAWS: untyped
6347
- CARRIERCARRIERCAPACITY: untyped
6348
- CARRIERLEASHRANGEUPGRADE: untyped
6349
5688
  HURRICANETHRUSTERS: untyped
6350
5689
  TEMPESTGROUNDATTACKUPGRADE: untyped
5690
+ FRENZY: untyped
6351
5691
  MICROBIALSHROUD: untyped
6352
5692
  INTERFERENCEMATRIX: untyped
6353
5693
  SUNDERINGIMPACT: untyped
6354
5694
  AMPLIFIEDSHIELDING: untyped
6355
5695
  PSIONICAMPLIFIERS: untyped
6356
5696
  SECRETEDCOATING: untyped
6357
- ENHANCEDSHOCKWAVES: untyped
6358
-
6359
- # sord omit - no YARD return type given, using untyped
6360
- def self._330MMBARRAGECANNONS: () -> untyped
6361
5697
  end
6362
5698
 
6363
5699
  class ObservationUI
@@ -7843,11 +7179,13 @@ module Api
7843
7179
  # _@return_ — new Position
7844
7180
  def random_offset: (Float offset) -> Sc2::Position
7845
7181
 
7846
- # sord omit - no YARD type given for "offset", using untyped
7847
- # Changes this point's x and y by the supplied offset
7182
+ # Randomly change this point's x and y by the supplied offset.
7183
+ # i.e. offset=2 can adjust x and y by any number in range -2..2
7184
+ #
7185
+ # _@param_ `offset`
7848
7186
  #
7849
7187
  # _@return_ — self
7850
- def random_offset!: (untyped offset) -> Sc2::Position
7188
+ def random_offset!: (Float offset) -> Sc2::Position
7851
7189
 
7852
7190
  # Creates a new point with x and y which is offset
7853
7191
  #
@@ -7888,12 +7226,13 @@ module Api
7888
7226
  # A new point representing the normalized version of this vector (unit length).
7889
7227
  def normalize: () -> Api::Point2D
7890
7228
 
7891
- # sord omit - no YARD type given for "other", using untyped
7892
7229
  # Linear interpolation between this point and another for scale
7893
7230
  # Finds a point on a line between two points at % along the way. 0.0 returns self, 1.0 returns other, 0.5 is halfway.
7894
7231
  #
7232
+ # _@param_ `other`
7233
+ #
7895
7234
  # _@param_ `scale` — a value between 0.0..1.0
7896
- def lerp: (untyped other, Float scale) -> Api::Point2D
7235
+ def lerp: (Sc2::Position other, Float scale) -> Api::Point2D
7897
7236
 
7898
7237
  # Calculates the distance between self and other
7899
7238
  #
@@ -7934,16 +7273,13 @@ module Api
7934
7273
  def away_from: (Api::Point2D other, Float distance) -> Api::Point2D
7935
7274
 
7936
7275
  # Returns [x,y] array tuple
7937
- def to_axy: () -> ::Array[(Float | Float)]
7276
+ def to_axy: () -> ::Array[Float]
7938
7277
 
7939
7278
  # Returns [x,y] array tuple where floats are cast to ints
7940
7279
  # Useful when trying to find the tile which something is on
7941
- #
7942
- # _@return_ — Array<Integer, Integer>
7943
- def to_atile: () -> ::Array[(Integer | Integer)]
7280
+ def to_atile: () -> ::Array[Integer]
7944
7281
 
7945
- # sord omit - no YARD return type given, using untyped
7946
- def to_s: () -> untyped
7282
+ def to_s: () -> String
7947
7283
 
7948
7284
  # sord omit - no YARD type given for :pos, using untyped
7949
7285
  # optional field readers
@@ -8815,9 +8151,6 @@ module Api
8815
8151
  # For Terran builds a tech lab add-on on the current structure
8816
8152
  def build_tech_lab: (?queue_command: untyped) -> void
8817
8153
 
8818
- # sord omit - no YARD return type given, using untyped
8819
- def target_for_addon_placement: () -> untyped
8820
-
8821
8154
  # sord omit - no YARD return type given, using untyped
8822
8155
  # Warps in unit type at target (location or pylon)
8823
8156
  # Only works if the source is a Warp Gate
@@ -11405,12 +10738,38 @@ module Api
11405
10738
  MINERALFIELD450: untyped
11406
10739
  MINERALFIELDOPAQUE: untyped
11407
10740
  MINERALFIELDOPAQUE900: untyped
10741
+ MECHAZERGLINGACGLUESCREENDUMMY_2: untyped
10742
+ MECHABANELINGACGLUESCREENDUMMY_2: untyped
10743
+ MECHAHYDRALISKACGLUESCREENDUMMY_2: untyped
10744
+ MECHAINFESTORACGLUESCREENDUMMY_2: untyped
10745
+ MECHACORRUPTORACGLUESCREENDUMMY_2: untyped
10746
+ MECHAULTRALISKACGLUESCREENDUMMY_2: untyped
10747
+ MECHAOVERSEERACGLUESCREENDUMMY_2: untyped
10748
+ MECHALURKERACGLUESCREENDUMMY_2: untyped
10749
+ MECHABATTLECARRIERLORDACGLUESCREENDUMMY_2: untyped
10750
+ MECHASPINECRAWLERACGLUESCREENDUMMY_2: untyped
10751
+ MECHASPORECRAWLERACGLUESCREENDUMMY_2: untyped
11408
10752
  COLLAPSIBLEROCKTOWERDEBRISRAMPLEFTGREEN: untyped
11409
10753
  COLLAPSIBLEROCKTOWERDEBRISRAMPRIGHTGREEN: untyped
11410
10754
  COLLAPSIBLEROCKTOWERPUSHUNITRAMPLEFTGREEN: untyped
11411
10755
  COLLAPSIBLEROCKTOWERPUSHUNITRAMPRIGHTGREEN: untyped
11412
10756
  COLLAPSIBLEROCKTOWERRAMPLEFTGREEN: untyped
11413
10757
  COLLAPSIBLEROCKTOWERRAMPRIGHTGREEN: untyped
10758
+ DUMMYUNIT000: untyped
10759
+ DUMMYUNIT001: untyped
10760
+ DUMMYUNIT002: untyped
10761
+ DUMMYUNIT003: untyped
10762
+ DUMMYUNIT004: untyped
10763
+ DUMMYUNIT005: untyped
10764
+ DUMMYUNIT006: untyped
10765
+ DUMMYUNIT007: untyped
10766
+ DUMMYUNIT008: untyped
10767
+ DUMMYUNIT009: untyped
10768
+ DUMMYUNIT010: untyped
10769
+ DUMMYUNIT011: untyped
10770
+ DUMMYUNIT012: untyped
10771
+ DUMMYUNIT013: untyped
10772
+ DUMMYUNIT014: untyped
11414
10773
 
11415
10774
  # sord omit - no YARD return type given, using untyped
11416
10775
  def self._4SLOTBAG: () -> untyped
@@ -14475,6 +13834,15 @@ module Api
14475
13834
  # sord omit - no YARD return type given, using untyped
14476
13835
  def to_json: (?untyped as_json_options) -> untyped
14477
13836
 
13837
+ # Returns self.
13838
+ # If you're ever unsure if you have a Unit or Position in hand,
13839
+ # this method allows safely calling `unknown_target.pos` to return a position.
13840
+ #
13841
+ # ```ruby
13842
+ # target.pos
13843
+ # ```
13844
+ def pos: () -> Sc2::Position
13845
+
14478
13846
  # Loose equality matches on floats x and y.
14479
13847
  # We never check z-axis, because the map is single-level.
14480
13848
  # TODO: We should almost certainly introduce TOLERANCE here, but verify it's cost first.
@@ -14509,11 +13877,13 @@ module Api
14509
13877
  # _@return_ — new Position
14510
13878
  def random_offset: (Float offset) -> Sc2::Position
14511
13879
 
14512
- # sord omit - no YARD type given for "offset", using untyped
14513
- # Changes this point's x and y by the supplied offset
13880
+ # Randomly change this point's x and y by the supplied offset.
13881
+ # i.e. offset=2 can adjust x and y by any number in range -2..2
13882
+ #
13883
+ # _@param_ `offset`
14514
13884
  #
14515
13885
  # _@return_ — self
14516
- def random_offset!: (untyped offset) -> Sc2::Position
13886
+ def random_offset!: (Float offset) -> Sc2::Position
14517
13887
 
14518
13888
  # Creates a new point with x and y which is offset
14519
13889
  #
@@ -14554,12 +13924,13 @@ module Api
14554
13924
  # A new point representing the normalized version of this vector (unit length).
14555
13925
  def normalize: () -> Api::Point2D
14556
13926
 
14557
- # sord omit - no YARD type given for "other", using untyped
14558
13927
  # Linear interpolation between this point and another for scale
14559
13928
  # Finds a point on a line between two points at % along the way. 0.0 returns self, 1.0 returns other, 0.5 is halfway.
14560
13929
  #
13930
+ # _@param_ `other`
13931
+ #
14561
13932
  # _@param_ `scale` — a value between 0.0..1.0
14562
- def lerp: (untyped other, Float scale) -> Api::Point2D
13933
+ def lerp: (Sc2::Position other, Float scale) -> Api::Point2D
14563
13934
 
14564
13935
  # Calculates the distance between self and other
14565
13936
  #
@@ -14600,16 +13971,13 @@ module Api
14600
13971
  def away_from: (Api::Point2D other, Float distance) -> Api::Point2D
14601
13972
 
14602
13973
  # Returns [x,y] array tuple
14603
- def to_axy: () -> ::Array[(Float | Float)]
13974
+ def to_axy: () -> ::Array[Float]
14604
13975
 
14605
13976
  # Returns [x,y] array tuple where floats are cast to ints
14606
13977
  # Useful when trying to find the tile which something is on
14607
- #
14608
- # _@return_ — Array<Integer, Integer>
14609
- def to_atile: () -> ::Array[(Integer | Integer)]
13978
+ def to_atile: () -> ::Array[Integer]
14610
13979
 
14611
- # sord omit - no YARD return type given, using untyped
14612
- def to_s: () -> untyped
13980
+ def to_s: () -> String
14613
13981
 
14614
13982
  # sord omit - no YARD type given for :x, using untyped
14615
13983
  # optional field readers
@@ -14732,6 +14100,15 @@ module Api
14732
14100
  # ```
14733
14101
  def self.[]: ((Float | Integer) x, (Float | Integer) y) -> Api::Point2D
14734
14102
 
14103
+ # Returns self.
14104
+ # If you're ever unsure if you have a Unit or Position in hand,
14105
+ # this method allows safely calling `unknown_target.pos` to return a position.
14106
+ #
14107
+ # ```ruby
14108
+ # target.pos
14109
+ # ```
14110
+ def pos: () -> Sc2::Position
14111
+
14735
14112
  # Loose equality matches on floats x and y.
14736
14113
  # We never check z-axis, because the map is single-level.
14737
14114
  # TODO: We should almost certainly introduce TOLERANCE here, but verify it's cost first.
@@ -14766,11 +14143,13 @@ module Api
14766
14143
  # _@return_ — new Position
14767
14144
  def random_offset: (Float offset) -> Sc2::Position
14768
14145
 
14769
- # sord omit - no YARD type given for "offset", using untyped
14770
- # Changes this point's x and y by the supplied offset
14146
+ # Randomly change this point's x and y by the supplied offset.
14147
+ # i.e. offset=2 can adjust x and y by any number in range -2..2
14148
+ #
14149
+ # _@param_ `offset`
14771
14150
  #
14772
14151
  # _@return_ — self
14773
- def random_offset!: (untyped offset) -> Sc2::Position
14152
+ def random_offset!: (Float offset) -> Sc2::Position
14774
14153
 
14775
14154
  # Creates a new point with x and y which is offset
14776
14155
  #
@@ -14811,12 +14190,13 @@ module Api
14811
14190
  # A new point representing the normalized version of this vector (unit length).
14812
14191
  def normalize: () -> Api::Point2D
14813
14192
 
14814
- # sord omit - no YARD type given for "other", using untyped
14815
14193
  # Linear interpolation between this point and another for scale
14816
14194
  # Finds a point on a line between two points at % along the way. 0.0 returns self, 1.0 returns other, 0.5 is halfway.
14817
14195
  #
14196
+ # _@param_ `other`
14197
+ #
14818
14198
  # _@param_ `scale` — a value between 0.0..1.0
14819
- def lerp: (untyped other, Float scale) -> Api::Point2D
14199
+ def lerp: (Sc2::Position other, Float scale) -> Api::Point2D
14820
14200
 
14821
14201
  # Calculates the distance between self and other
14822
14202
  #
@@ -14857,16 +14237,13 @@ module Api
14857
14237
  def away_from: (Api::Point2D other, Float distance) -> Api::Point2D
14858
14238
 
14859
14239
  # Returns [x,y] array tuple
14860
- def to_axy: () -> ::Array[(Float | Float)]
14240
+ def to_axy: () -> ::Array[Float]
14861
14241
 
14862
14242
  # Returns [x,y] array tuple where floats are cast to ints
14863
14243
  # Useful when trying to find the tile which something is on
14864
- #
14865
- # _@return_ — Array<Integer, Integer>
14866
- def to_atile: () -> ::Array[(Integer | Integer)]
14244
+ def to_atile: () -> ::Array[Integer]
14867
14245
 
14868
- # sord omit - no YARD return type given, using untyped
14869
- def to_s: () -> untyped
14246
+ def to_s: () -> String
14870
14247
 
14871
14248
  # sord omit - no YARD return type given, using untyped
14872
14249
  # Hashes on x and y
@@ -14957,6 +14334,15 @@ module Api
14957
14334
  # ```
14958
14335
  def self.[]: (Float x, Float y, Float z) -> Api::Point
14959
14336
 
14337
+ # Returns self.
14338
+ # If you're ever unsure if you have a Unit or Position in hand,
14339
+ # this method allows safely calling `unknown_target.pos` to return a position.
14340
+ #
14341
+ # ```ruby
14342
+ # target.pos
14343
+ # ```
14344
+ def pos: () -> Sc2::Position
14345
+
14960
14346
  # Loose equality matches on floats x and y.
14961
14347
  # We never check z-axis, because the map is single-level.
14962
14348
  # TODO: We should almost certainly introduce TOLERANCE here, but verify it's cost first.
@@ -14991,11 +14377,13 @@ module Api
14991
14377
  # _@return_ — new Position
14992
14378
  def random_offset: (Float offset) -> Sc2::Position
14993
14379
 
14994
- # sord omit - no YARD type given for "offset", using untyped
14995
- # Changes this point's x and y by the supplied offset
14380
+ # Randomly change this point's x and y by the supplied offset.
14381
+ # i.e. offset=2 can adjust x and y by any number in range -2..2
14382
+ #
14383
+ # _@param_ `offset`
14996
14384
  #
14997
14385
  # _@return_ — self
14998
- def random_offset!: (untyped offset) -> Sc2::Position
14386
+ def random_offset!: (Float offset) -> Sc2::Position
14999
14387
 
15000
14388
  # Creates a new point with x and y which is offset
15001
14389
  #
@@ -15036,12 +14424,13 @@ module Api
15036
14424
  # A new point representing the normalized version of this vector (unit length).
15037
14425
  def normalize: () -> Api::Point2D
15038
14426
 
15039
- # sord omit - no YARD type given for "other", using untyped
15040
14427
  # Linear interpolation between this point and another for scale
15041
14428
  # Finds a point on a line between two points at % along the way. 0.0 returns self, 1.0 returns other, 0.5 is halfway.
15042
14429
  #
14430
+ # _@param_ `other`
14431
+ #
15043
14432
  # _@param_ `scale` — a value between 0.0..1.0
15044
- def lerp: (untyped other, Float scale) -> Api::Point2D
14433
+ def lerp: (Sc2::Position other, Float scale) -> Api::Point2D
15045
14434
 
15046
14435
  # Calculates the distance between self and other
15047
14436
  #
@@ -15082,16 +14471,13 @@ module Api
15082
14471
  def away_from: (Api::Point2D other, Float distance) -> Api::Point2D
15083
14472
 
15084
14473
  # Returns [x,y] array tuple
15085
- def to_axy: () -> ::Array[(Float | Float)]
14474
+ def to_axy: () -> ::Array[Float]
15086
14475
 
15087
14476
  # Returns [x,y] array tuple where floats are cast to ints
15088
14477
  # Useful when trying to find the tile which something is on
15089
- #
15090
- # _@return_ — Array<Integer, Integer>
15091
- def to_atile: () -> ::Array[(Integer | Integer)]
14478
+ def to_atile: () -> ::Array[Integer]
15092
14479
 
15093
- # sord omit - no YARD return type given, using untyped
15094
- def to_s: () -> untyped
14480
+ def to_s: () -> String
15095
14481
 
15096
14482
  # sord omit - no YARD return type given, using untyped
15097
14483
  def hash: () -> untyped
@@ -15162,6 +14548,15 @@ module Api
15162
14548
  # sord omit - no YARD return type given, using untyped
15163
14549
  def to_json: (?untyped as_json_options) -> untyped
15164
14550
 
14551
+ # Returns self.
14552
+ # If you're ever unsure if you have a Unit or Position in hand,
14553
+ # this method allows safely calling `unknown_target.pos` to return a position.
14554
+ #
14555
+ # ```ruby
14556
+ # target.pos
14557
+ # ```
14558
+ def pos: () -> Sc2::Position
14559
+
15165
14560
  # Loose equality matches on floats x and y.
15166
14561
  # We never check z-axis, because the map is single-level.
15167
14562
  # TODO: We should almost certainly introduce TOLERANCE here, but verify it's cost first.
@@ -15196,11 +14591,13 @@ module Api
15196
14591
  # _@return_ — new Position
15197
14592
  def random_offset: (Float offset) -> Sc2::Position
15198
14593
 
15199
- # sord omit - no YARD type given for "offset", using untyped
15200
- # Changes this point's x and y by the supplied offset
14594
+ # Randomly change this point's x and y by the supplied offset.
14595
+ # i.e. offset=2 can adjust x and y by any number in range -2..2
14596
+ #
14597
+ # _@param_ `offset`
15201
14598
  #
15202
14599
  # _@return_ — self
15203
- def random_offset!: (untyped offset) -> Sc2::Position
14600
+ def random_offset!: (Float offset) -> Sc2::Position
15204
14601
 
15205
14602
  # Creates a new point with x and y which is offset
15206
14603
  #
@@ -15241,12 +14638,13 @@ module Api
15241
14638
  # A new point representing the normalized version of this vector (unit length).
15242
14639
  def normalize: () -> Api::Point2D
15243
14640
 
15244
- # sord omit - no YARD type given for "other", using untyped
15245
14641
  # Linear interpolation between this point and another for scale
15246
14642
  # Finds a point on a line between two points at % along the way. 0.0 returns self, 1.0 returns other, 0.5 is halfway.
15247
14643
  #
14644
+ # _@param_ `other`
14645
+ #
15248
14646
  # _@param_ `scale` — a value between 0.0..1.0
15249
- def lerp: (untyped other, Float scale) -> Api::Point2D
14647
+ def lerp: (Sc2::Position other, Float scale) -> Api::Point2D
15250
14648
 
15251
14649
  # Calculates the distance between self and other
15252
14650
  #
@@ -15287,16 +14685,13 @@ module Api
15287
14685
  def away_from: (Api::Point2D other, Float distance) -> Api::Point2D
15288
14686
 
15289
14687
  # Returns [x,y] array tuple
15290
- def to_axy: () -> ::Array[(Float | Float)]
14688
+ def to_axy: () -> ::Array[Float]
15291
14689
 
15292
14690
  # Returns [x,y] array tuple where floats are cast to ints
15293
14691
  # Useful when trying to find the tile which something is on
15294
- #
15295
- # _@return_ — Array<Integer, Integer>
15296
- def to_atile: () -> ::Array[(Integer | Integer)]
14692
+ def to_atile: () -> ::Array[Integer]
15297
14693
 
15298
- # sord omit - no YARD return type given, using untyped
15299
- def to_s: () -> untyped
14694
+ def to_s: () -> String
15300
14695
 
15301
14696
  # sord omit - no YARD type given for :x, using untyped
15302
14697
  # optional field readers
@@ -20763,9 +20158,6 @@ module Api
20763
20158
  # For Terran builds a tech lab add-on on the current structure
20764
20159
  def build_tech_lab: (?queue_command: untyped) -> void
20765
20160
 
20766
- # sord omit - no YARD return type given, using untyped
20767
- def target_for_addon_placement: () -> untyped
20768
-
20769
20161
  # sord omit - no YARD return type given, using untyped
20770
20162
  # Warps in unit type at target (location or pylon)
20771
20163
  # Only works if the source is a Warp Gate
@@ -20802,6 +20194,17 @@ module Api
20802
20194
 
20803
20195
  attr_reader full_energy?: bool
20804
20196
 
20197
+ # Returns whether this is a melee (non-ranged) attacker
20198
+ # Archon isn't melee; 3 range
20199
+ # Hellbat is melee, but Hellion isn't melee; 5 range
20200
+ # Roach isn't melee; just an attack animation when nearby
20201
+ attr_reader is_melee?: bool
20202
+
20203
+ # Returns ranged attack units
20204
+ #
20205
+ # _@see_ `Sc2::UnitGroup::TYPE_RANGE`
20206
+ attr_reader is_ranged?: bool
20207
+
20805
20208
  attr_reader is_flying?: bool
20806
20209
 
20807
20210
  attr_reader is_burrowed?: bool
@@ -20925,6 +20328,15 @@ module Api
20925
20328
  module PowerSourceExtension
20926
20329
  include Sc2::Position
20927
20330
 
20331
+ # Returns self.
20332
+ # If you're ever unsure if you have a Unit or Position in hand,
20333
+ # this method allows safely calling `unknown_target.pos` to return a position.
20334
+ #
20335
+ # ```ruby
20336
+ # target.pos
20337
+ # ```
20338
+ def pos: () -> Sc2::Position
20339
+
20928
20340
  # Loose equality matches on floats x and y.
20929
20341
  # We never check z-axis, because the map is single-level.
20930
20342
  # TODO: We should almost certainly introduce TOLERANCE here, but verify it's cost first.
@@ -20959,11 +20371,13 @@ module Api
20959
20371
  # _@return_ — new Position
20960
20372
  def random_offset: (Float offset) -> Sc2::Position
20961
20373
 
20962
- # sord omit - no YARD type given for "offset", using untyped
20963
- # Changes this point's x and y by the supplied offset
20374
+ # Randomly change this point's x and y by the supplied offset.
20375
+ # i.e. offset=2 can adjust x and y by any number in range -2..2
20376
+ #
20377
+ # _@param_ `offset`
20964
20378
  #
20965
20379
  # _@return_ — self
20966
- def random_offset!: (untyped offset) -> Sc2::Position
20380
+ def random_offset!: (Float offset) -> Sc2::Position
20967
20381
 
20968
20382
  # Creates a new point with x and y which is offset
20969
20383
  #
@@ -21004,12 +20418,13 @@ module Api
21004
20418
  # A new point representing the normalized version of this vector (unit length).
21005
20419
  def normalize: () -> Api::Point2D
21006
20420
 
21007
- # sord omit - no YARD type given for "other", using untyped
21008
20421
  # Linear interpolation between this point and another for scale
21009
20422
  # Finds a point on a line between two points at % along the way. 0.0 returns self, 1.0 returns other, 0.5 is halfway.
21010
20423
  #
20424
+ # _@param_ `other`
20425
+ #
21011
20426
  # _@param_ `scale` — a value between 0.0..1.0
21012
- def lerp: (untyped other, Float scale) -> Api::Point2D
20427
+ def lerp: (Sc2::Position other, Float scale) -> Api::Point2D
21013
20428
 
21014
20429
  # Calculates the distance between self and other
21015
20430
  #
@@ -21050,16 +20465,13 @@ module Api
21050
20465
  def away_from: (Api::Point2D other, Float distance) -> Api::Point2D
21051
20466
 
21052
20467
  # Returns [x,y] array tuple
21053
- def to_axy: () -> ::Array[(Float | Float)]
20468
+ def to_axy: () -> ::Array[Float]
21054
20469
 
21055
20470
  # Returns [x,y] array tuple where floats are cast to ints
21056
20471
  # Useful when trying to find the tile which something is on
21057
- #
21058
- # _@return_ — Array<Integer, Integer>
21059
- def to_atile: () -> ::Array[(Integer | Integer)]
20472
+ def to_atile: () -> ::Array[Integer]
21060
20473
 
21061
- # sord omit - no YARD return type given, using untyped
21062
- def to_s: () -> untyped
20474
+ def to_s: () -> String
21063
20475
 
21064
20476
  # Adds additional functionality to message class Api::PowerSource
21065
20477
  module ClassMethods