- Added Artifact type to Thopter Foundry tokens.

- Fixed a Standstill bug.
- Changed token image names: Marit Lage => c_20_20_marit_lage.jpg, Voja => gw_2_2_voja.jpg.
This commit is contained in:
jendave
2011-08-06 02:54:41 +00:00
parent 5878fa46fc
commit 3015fb0899
5 changed files with 8 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
program/mail=mtgerror@yahoo.com program/mail=mtgerror@yahoo.com
program/forum=http://www.slightlymagic.net/forum/viewforum.php?f=26 program/forum=http://www.slightlymagic.net/forum/viewforum.php?f=26
program/version=MTG Forge -- official beta: 09/12/03, SVN revision: 128 program/version=MTG Forge -- official beta: 09/11/25, SVN revision: 129
tokens--file=AllTokens.txt tokens--file=AllTokens.txt

View File

@@ -16954,8 +16954,6 @@ return land.size() > 1 && CardFactoryUtil.AI_isMainPhase();
PlayerLife life = AllZone.GameAction.getPlayerLife(card.getController()); PlayerLife life = AllZone.GameAction.getPlayerLife(card.getController());
life.addLife(1); life.addLife(1);
} }
}//resolve }//resolve
public void makeToken() public void makeToken()
@@ -16971,6 +16969,7 @@ return land.size() > 1 && CardFactoryUtil.AI_isMainPhase();
c.setManaCost("U"); c.setManaCost("U");
c.setToken(true); c.setToken(true);
c.addType("Artifact");
c.addType("Creature"); c.addType("Creature");
c.addType("Thopter"); c.addType("Thopter");
c.setBaseAttack(1); c.setBaseAttack(1);
@@ -17090,6 +17089,8 @@ return land.size() > 1 && CardFactoryUtil.AI_isMainPhase();
card.clearSpellAbility(); card.clearSpellAbility();
card.addSpellAbility(spell); card.addSpellAbility(spell);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
//*************** START *********** START **************************
if (cardName.equals("Celestial Purge")) if (cardName.equals("Celestial Purge"))
{ {
final Spell spell = new Spell(card) final Spell spell = new Spell(card)

View File

@@ -9358,6 +9358,7 @@ public class CardFactory_Creatures {
Card c = new Card(); Card c = new Card();
c.setName("Stangg Twin"); c.setName("Stangg Twin");
c.setImageName("RG 3 4 Stangg Twin");
c.setOwner(card.getController()); c.setOwner(card.getController());
c.setController(card.getController()); c.setController(card.getController());
@@ -13699,6 +13700,7 @@ public class CardFactory_Creatures {
Card c = new Card(); Card c = new Card();
c.setName("Voja"); c.setName("Voja");
c.setImageName("GW 2 2 Voja");
c.setOwner(card.getController()); c.setOwner(card.getController());
c.setController(card.getController()); c.setController(card.getController());

View File

@@ -934,6 +934,7 @@ class CardFactory_Lands {
c.setController(card.getController()); c.setController(card.getController());
c.setName("Marit Lage"); c.setName("Marit Lage");
c.setName("C 20 20 Marit Lage");
c.setManaCost("B"); c.setManaCost("B");
c.setToken(true); c.setToken(true);

View File

@@ -113,7 +113,7 @@ public class GameActionUtil
{ {
final String drawer = AllZone.GameAction.getOpponent(c final String drawer = AllZone.GameAction.getOpponent(c
.getController()); .getController());
final Card card = list.get(0); final Card card = list.get(i);
Ability ability2 = new Ability(card, "0") Ability ability2 = new Ability(card, "0")
{ {