XCOM 2
Muton Destroyer - WotC
Showing 1-3 of 3 entries
Update: 23 May, 2021 @ 9:55pm

Disabled a debug flag.

Update: 23 May, 2021 @ 9:39pm

Adjusted Action Point Cost code for the 'Poor Manners' Ability. Changed iNumPoints from 0 to 1. Added bFreeCost = true.

//Action Points
ActionPointCost = new class'X2AbilityCost_ActionPoints';
ActionPointCost.iNumPoints = 1;
ActionPointCost.bFreeCost = true;
ActionPointCost.bConsumeAllPoints = false;
Template.AbilityCosts.AddItem(ActionPointCost);

The result of this change will allow the XCom Team Turn to properly end automatically when all soldiers are out of Actions if a Muton Destroyer is currently under Mind Control. Previously, the player had to explicitly end the turn by using the [X] button due to the Mind Controlled Muton Destroyer still having a 0 Cost Free Action available.

Update: 9 May, 2021 @ 8:54pm

Initial Release - Muton Destroyer v1.0