File tree 1 file changed +15
-12
lines changed
1 file changed +15
-12
lines changed Original file line number Diff line number Diff line change @@ -1572,6 +1572,19 @@ const SaboteurUnitAbilities = new UnitAbilities({
1572
1572
rescue : true ,
1573
1573
sabotage : true ,
1574
1574
} ) ;
1575
+ const DefaultSabotageTypes = new Set ( [
1576
+ EntityType . AirInfantry ,
1577
+ EntityType . Amphibious ,
1578
+ EntityType . Artillery ,
1579
+ EntityType . Building ,
1580
+ EntityType . Ground ,
1581
+ EntityType . Infantry ,
1582
+ EntityType . Invincible ,
1583
+ EntityType . LowAltitude ,
1584
+ EntityType . Rail ,
1585
+ EntityType . Ship ,
1586
+ EntityType . Structure ,
1587
+ ] ) ;
1575
1588
1576
1589
export const Pioneer = new UnitInfo (
1577
1590
UnitID . Pioneer ,
@@ -2167,18 +2180,7 @@ export const Saboteur = new UnitInfo(
2167
2180
cost : 325 ,
2168
2181
fuel : 40 ,
2169
2182
radius : 6 ,
2170
- sabotageTypes : new Set ( [
2171
- EntityType . AirInfantry ,
2172
- EntityType . Amphibious ,
2173
- EntityType . Artillery ,
2174
- EntityType . Building ,
2175
- EntityType . Ground ,
2176
- EntityType . Infantry ,
2177
- EntityType . Invincible ,
2178
- EntityType . Ship ,
2179
- EntityType . Structure ,
2180
- EntityType . Rail ,
2181
- ] ) ,
2183
+ sabotageTypes : DefaultSabotageTypes ,
2182
2184
vision : 1 ,
2183
2185
} ,
2184
2186
SaboteurUnitAbilities ,
@@ -3337,6 +3339,7 @@ export const Alien = new UnitInfo(
3337
3339
cost : Number . POSITIVE_INFINITY ,
3338
3340
fuel : 20 ,
3339
3341
radius : 4 ,
3342
+ sabotageTypes : DefaultSabotageTypes ,
3340
3343
vision : 1 ,
3341
3344
} ,
3342
3345
SaboteurUnitAbilities ,
You can’t perform that action at this time.
0 commit comments