Moves Upgrades and Invulnerable trait to Mods.Common
This commit is contained in:
@@ -233,6 +233,7 @@
|
|||||||
<Compile Include="Traits\Immobile.cs" />
|
<Compile Include="Traits\Immobile.cs" />
|
||||||
<Compile Include="Traits\Infantry\ScaredyCat.cs" />
|
<Compile Include="Traits\Infantry\ScaredyCat.cs" />
|
||||||
<Compile Include="Traits\Infantry\TakeCover.cs" />
|
<Compile Include="Traits\Infantry\TakeCover.cs" />
|
||||||
|
<Compile Include="Traits\Invulnerable.cs" />
|
||||||
<Compile Include="Traits\JamsMissiles.cs" />
|
<Compile Include="Traits\JamsMissiles.cs" />
|
||||||
<Compile Include="Traits\KillsSelf.cs" />
|
<Compile Include="Traits\KillsSelf.cs" />
|
||||||
<Compile Include="Traits\LimitedAmmo.cs" />
|
<Compile Include="Traits\LimitedAmmo.cs" />
|
||||||
@@ -330,7 +331,10 @@
|
|||||||
<Compile Include="Traits\Tooltip.cs" />
|
<Compile Include="Traits\Tooltip.cs" />
|
||||||
<Compile Include="Traits\TransformOnCapture.cs" />
|
<Compile Include="Traits\TransformOnCapture.cs" />
|
||||||
<Compile Include="Traits\Turreted.cs" />
|
<Compile Include="Traits\Turreted.cs" />
|
||||||
|
<Compile Include="Traits\Upgrades\DisableUpgrade.cs" />
|
||||||
|
<Compile Include="Traits\Upgrades\GainsStatUpgrades.cs" />
|
||||||
<Compile Include="Traits\Upgrades\UpgradableTrait.cs" />
|
<Compile Include="Traits\Upgrades\UpgradableTrait.cs" />
|
||||||
|
<Compile Include="Traits\Upgrades\UpgradeActorsNear.cs" />
|
||||||
<Compile Include="Traits\Upgrades\UpgradeManager.cs" />
|
<Compile Include="Traits\Upgrades\UpgradeManager.cs" />
|
||||||
<Compile Include="Traits\Valued.cs" />
|
<Compile Include="Traits\Valued.cs" />
|
||||||
<Compile Include="Traits\Wanders.cs" />
|
<Compile Include="Traits\Wanders.cs" />
|
||||||
@@ -377,6 +381,7 @@
|
|||||||
<Compile Include="Warheads\CreateEffectWarhead.cs" />
|
<Compile Include="Warheads\CreateEffectWarhead.cs" />
|
||||||
<Compile Include="Warheads\CreateResourceWarhead.cs" />
|
<Compile Include="Warheads\CreateResourceWarhead.cs" />
|
||||||
<Compile Include="Warheads\DestroyResourceWarhead.cs" />
|
<Compile Include="Warheads\DestroyResourceWarhead.cs" />
|
||||||
|
<Compile Include="Warheads\GrantUpgradeWarhead.cs" />
|
||||||
<Compile Include="Warheads\HealthPercentageDamageWarhead.cs" />
|
<Compile Include="Warheads\HealthPercentageDamageWarhead.cs" />
|
||||||
<Compile Include="Warheads\LeaveSmudgeWarhead.cs" />
|
<Compile Include="Warheads\LeaveSmudgeWarhead.cs" />
|
||||||
<Compile Include="Warheads\SpreadDamageWarhead.cs" />
|
<Compile Include="Warheads\SpreadDamageWarhead.cs" />
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
using OpenRA.GameRules;
|
using OpenRA.GameRules;
|
||||||
using OpenRA.Traits;
|
using OpenRA.Traits;
|
||||||
|
|
||||||
namespace OpenRA.Mods.RA
|
namespace OpenRA.Mods.Common.Traits
|
||||||
{
|
{
|
||||||
[Desc("This unit cannot be damaged.")]
|
[Desc("This unit cannot be damaged.")]
|
||||||
class InvulnerableInfo : TraitInfo<Invulnerable> { }
|
class InvulnerableInfo : TraitInfo<Invulnerable> { }
|
||||||
@@ -11,10 +11,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using OpenRA.GameRules;
|
using OpenRA.GameRules;
|
||||||
using OpenRA.Mods.Common.Traits;
|
|
||||||
using OpenRA.Traits;
|
using OpenRA.Traits;
|
||||||
|
|
||||||
namespace OpenRA.Mods.RA
|
namespace OpenRA.Mods.Common.Traits
|
||||||
{
|
{
|
||||||
public class DisableUpgradeInfo : UpgradableTraitInfo, ITraitInfo
|
public class DisableUpgradeInfo : UpgradableTraitInfo, ITraitInfo
|
||||||
{
|
{
|
||||||
@@ -11,10 +11,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using OpenRA.GameRules;
|
using OpenRA.GameRules;
|
||||||
using OpenRA.Mods.Common.Traits;
|
|
||||||
using OpenRA.Traits;
|
using OpenRA.Traits;
|
||||||
|
|
||||||
namespace OpenRA.Mods.RA
|
namespace OpenRA.Mods.Common.Traits
|
||||||
{
|
{
|
||||||
[Desc("This actor has properties that upgrade when a specific criteria is met.")]
|
[Desc("This actor has properties that upgrade when a specific criteria is met.")]
|
||||||
public class GainsStatUpgradesInfo : ITraitInfo
|
public class GainsStatUpgradesInfo : ITraitInfo
|
||||||
@@ -11,10 +11,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using OpenRA.GameRules;
|
using OpenRA.GameRules;
|
||||||
using OpenRA.Mods.Common.Traits;
|
|
||||||
using OpenRA.Traits;
|
using OpenRA.Traits;
|
||||||
|
|
||||||
namespace OpenRA.Mods.RA
|
namespace OpenRA.Mods.Common.Traits
|
||||||
{
|
{
|
||||||
[Desc("Applies an upgrade to actors within a specified range.")]
|
[Desc("Applies an upgrade to actors within a specified range.")]
|
||||||
public class UpgradeActorsNearInfo : ITraitInfo
|
public class UpgradeActorsNearInfo : ITraitInfo
|
||||||
@@ -12,11 +12,11 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using OpenRA.Effects;
|
using OpenRA.Effects;
|
||||||
using OpenRA.GameRules;
|
using OpenRA.GameRules;
|
||||||
|
using OpenRA.Mods.Common.Effects;
|
||||||
using OpenRA.Mods.Common.Traits;
|
using OpenRA.Mods.Common.Traits;
|
||||||
using OpenRA.Mods.RA.Effects;
|
|
||||||
using OpenRA.Traits;
|
using OpenRA.Traits;
|
||||||
|
|
||||||
namespace OpenRA.Mods.RA
|
namespace OpenRA.Mods.Common.Warheads
|
||||||
{
|
{
|
||||||
public class GrantUpgradeWarhead : Warhead
|
public class GrantUpgradeWarhead : Warhead
|
||||||
{
|
{
|
||||||
@@ -123,7 +123,6 @@
|
|||||||
<Compile Include="Effects\GpsDot.cs" />
|
<Compile Include="Effects\GpsDot.cs" />
|
||||||
<Compile Include="Effects\Parachute.cs" />
|
<Compile Include="Effects\Parachute.cs" />
|
||||||
<Compile Include="EmitInfantryOnSell.cs" />
|
<Compile Include="EmitInfantryOnSell.cs" />
|
||||||
<Compile Include="Invulnerable.cs" />
|
|
||||||
<Compile Include="Lint\CheckActorReferences.cs" />
|
<Compile Include="Lint\CheckActorReferences.cs" />
|
||||||
<Compile Include="Lint\CheckSyncAnnotations.cs" />
|
<Compile Include="Lint\CheckSyncAnnotations.cs" />
|
||||||
<Compile Include="Lint\CheckTraitPrerequisites.cs" />
|
<Compile Include="Lint\CheckTraitPrerequisites.cs" />
|
||||||
@@ -243,16 +242,12 @@
|
|||||||
<Compile Include="Widgets\Logic\SupportPowerTooltipLogic.cs" />
|
<Compile Include="Widgets\Logic\SupportPowerTooltipLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\SupportPowerBinLogic.cs" />
|
<Compile Include="Widgets\Logic\SupportPowerBinLogic.cs" />
|
||||||
<Compile Include="Widgets\Logic\DebugMenuLogic.cs" />
|
<Compile Include="Widgets\Logic\DebugMenuLogic.cs" />
|
||||||
<Compile Include="GainsStatUpgrades.cs" />
|
|
||||||
<Compile Include="Warheads\PerCellDamageWarhead.cs" />
|
<Compile Include="Warheads\PerCellDamageWarhead.cs" />
|
||||||
<Compile Include="Scripting\Properties\HarvesterProperties.cs" />
|
<Compile Include="Scripting\Properties\HarvesterProperties.cs" />
|
||||||
<Compile Include="Scripting\Properties\HelicopterProperties.cs" />
|
<Compile Include="Scripting\Properties\HelicopterProperties.cs" />
|
||||||
<Compile Include="Scripting\Properties\PlaneProperties.cs" />
|
<Compile Include="Scripting\Properties\PlaneProperties.cs" />
|
||||||
|
<Compile Include="Traits\InvulnerabilityUpgrade.cs" />
|
||||||
<Compile Include="SupportPowers\GrantUpgradePower.cs" />
|
<Compile Include="SupportPowers\GrantUpgradePower.cs" />
|
||||||
<Compile Include="InvulnerabilityUpgrade.cs" />
|
|
||||||
<Compile Include="DisableUpgrade.cs" />
|
|
||||||
<Compile Include="Warheads\GrantUpgradeWarhead.cs" />
|
|
||||||
<Compile Include="UpgradeActorsNear.cs" />
|
|
||||||
<Compile Include="Scripting\Properties\TransformProperties.cs" />
|
<Compile Include="Scripting\Properties\TransformProperties.cs" />
|
||||||
<Compile Include="UtilityCommands\ActorStatsExport.cs" />
|
<Compile Include="UtilityCommands\ActorStatsExport.cs" />
|
||||||
<Compile Include="UtilityCommands\ExportCharacterSeparatedRules.cs" />
|
<Compile Include="UtilityCommands\ExportCharacterSeparatedRules.cs" />
|
||||||
|
|||||||
Reference in New Issue
Block a user