mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
1) add Knight of Cliffhaven from Rise of the Eldrazi
2) add Ikiral Outrider from Rise of the Eldrazi 3) clean up a blank comment from Caravan Escort
This commit is contained in:
@@ -9925,9 +9925,6 @@ public class GameActionUtil {
|
||||
};
|
||||
|
||||
public static Command Caravan_Escort = new Command() {
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -6996623102170747897L;
|
||||
|
||||
public void execute()
|
||||
@@ -9960,6 +9957,75 @@ public class GameActionUtil {
|
||||
}
|
||||
};
|
||||
|
||||
public static Command Ikiral_Outrider = new Command() {
|
||||
private static final long serialVersionUID = 7835884582225439851L;
|
||||
|
||||
public void execute()
|
||||
{
|
||||
CardList list = new CardList();
|
||||
list.addAll(AllZone.Human_Play.getCards());
|
||||
list.addAll(AllZone.Computer_Play.getCards());
|
||||
list = list.getName("Ikiral Outrider");
|
||||
|
||||
for (Card c:list)
|
||||
{
|
||||
int lcs = c.getCounters(Counters.LEVEL);
|
||||
if ( lcs < 1)
|
||||
{
|
||||
c.setBaseAttack(1);
|
||||
c.setBaseDefense(2);
|
||||
}
|
||||
else if ( lcs >=1 && lcs < 3 )
|
||||
{
|
||||
c.setBaseAttack(3);
|
||||
c.setBaseDefense(6);
|
||||
c.addNonStackingIntrinsicKeyword("Vigilance");
|
||||
}
|
||||
else
|
||||
{
|
||||
c.setBaseAttack(5);
|
||||
c.setBaseDefense(5);
|
||||
c.addNonStackingIntrinsicKeyword("Vigilance");
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
public static Command Knight_of_Cliffhaven = new Command() {
|
||||
private static final long serialVersionUID = 3624165284236103054L;
|
||||
|
||||
public void execute()
|
||||
{
|
||||
CardList list = new CardList();
|
||||
list.addAll(AllZone.Human_Play.getCards());
|
||||
list.addAll(AllZone.Computer_Play.getCards());
|
||||
list = list.getName("Knight of Cliffhaven");
|
||||
|
||||
for (Card c:list)
|
||||
{
|
||||
int lcs = c.getCounters(Counters.LEVEL);
|
||||
if ( lcs < 1)
|
||||
{
|
||||
c.setBaseAttack(2);
|
||||
c.setBaseDefense(2);
|
||||
}
|
||||
else if ( lcs >=1 && lcs < 3 )
|
||||
{
|
||||
c.setBaseAttack(2);
|
||||
c.setBaseDefense(3);
|
||||
c.addNonStackingIntrinsicKeyword("Flying");
|
||||
}
|
||||
else
|
||||
{
|
||||
c.setBaseAttack(5);
|
||||
c.setBaseDefense(5);
|
||||
c.addNonStackingIntrinsicKeyword("Flying");
|
||||
c.addNonStackingIntrinsicKeyword("Vigilance");
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
public static Command Student_of_Warfare = new Command() {
|
||||
private static final long serialVersionUID = 2627513737024865169L;
|
||||
|
||||
@@ -15375,6 +15441,8 @@ public class GameActionUtil {
|
||||
commands.put("Lighthouse_Chronologist", Lighthouse_Chronologist);
|
||||
commands.put("Skywatcher_Adept", Skywatcher_Adept);
|
||||
commands.put("Caravan_Escort", Caravan_Escort);
|
||||
commands.put("Ikiral_Outrider", Ikiral_Outrider);
|
||||
commands.put("Knight_of_Cliffhaven", Knight_of_Cliffhaven);
|
||||
commands.put("Soulsurge_Elemental", Soulsurge_Elemental);
|
||||
|
||||
commands.put("Dauntless_Dourbark", Dauntless_Dourbark);
|
||||
|
||||
@@ -59,6 +59,9 @@ public class StaticEffects
|
||||
cardToEffectsList.put("Lighthouse Chronologist", new String[] {"Lighthouse_Chronologist"});
|
||||
cardToEffectsList.put("Skywatcher Adept", new String[] {"Skywatcher_Adept"});
|
||||
cardToEffectsList.put("Caravan Escort", new String[] {"Caravan_Escort"});
|
||||
cardToEffectsList.put("Ikiral Outrider", new String[] {"Ikiral_Outrider"});
|
||||
cardToEffectsList.put("Knight of Cliffhaven", new String[] {"Knight_of_Cliffhaven"});
|
||||
|
||||
cardToEffectsList.put("Soulsurge Elemental", new String[] {"Soulsurge_Elemental"});
|
||||
cardToEffectsList.put("Dauntless Dourbark", new String[] {"Dauntless_Dourbark"});
|
||||
cardToEffectsList.put("Gaea's Avenger", new String[] {"Gaeas_Avenger"});
|
||||
|
||||
Reference in New Issue
Block a user