Skip to content

Commit

Permalink
fixing points for rebel R2D2 astro and added torp slots to N1 (#3482)
Browse files Browse the repository at this point in the history
  • Loading branch information
randy-ja authored Nov 24, 2022
1 parent f84562c commit 9131dda
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public AnakinSkywalker() : base()
abilityType: typeof(AnakinSkywalkerNabooN1StarfighterAbility),
extraUpgradeIcons: new List<UpgradeType>
{
UpgradeType.Talent
UpgradeType.Talent, UpgradeType.Torpedo
},
tags: new List<Tags>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
namespace Ship
using Upgrade;
using System.Collections.Generic;

namespace Ship
{
namespace SecondEdition.NabooRoyalN1Starfighter
{
Expand All @@ -13,7 +16,11 @@ public BravoFlightOfficer() : base()
Faction.Republic,
2,
4,
8
8,
extraUpgradeIcons: new List<UpgradeType>
{
UpgradeType.Torpedo
}
);

ImageUrl = "https://squadbuilder.fantasyflightgames.com/card_images/en/274db1f70ed4da939b9440837a30c39a.png";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public DineeEllberger() : base()
abilityType: typeof(DineeEllbergerAbility),
extraUpgradeIcons: new List<UpgradeType>
{
UpgradeType.Talent
UpgradeType.Talent, UpgradeType.Torpedo
}
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public PadmeAmidala() : base()
abilityType: typeof(PadmeAmidalaAbility),
extraUpgradeIcons: new List<UpgradeType>
{
UpgradeType.Talent
UpgradeType.Talent, UpgradeType.Torpedo
}
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public RicOlie() : base()
abilityType: typeof(RicOlieAbility),
extraUpgradeIcons: new List<UpgradeType>
{
UpgradeType.Talent
UpgradeType.Talent, UpgradeType.Torpedo
}
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public R2D2() : base()
UpgradeInfo = new UpgradeCardInfo(
"R2-D2",
UpgradeType.Astromech,
cost: 6,
cost: 8,
isLimited: true,
abilityType: typeof(Abilities.SecondEdition.R2AstromechAbility),
restriction: new FactionRestriction(Faction.Rebel),
Expand Down

0 comments on commit 9131dda

Please sign in to comment.