- fixed the nullpointer bug with Tithe. (realized that the card is in no way properly implemented).

- Converted to keyword: Sunlance and Nameless Inversion.
This commit is contained in:
jendave
2011-08-06 09:17:48 +00:00
parent 14ee750056
commit e0be0e3da3
4 changed files with 9 additions and 6 deletions

View File

@@ -1,7 +1,8 @@
Name:Nameless Inversion
ManaCost:1 B
Types:Tribal Instant Shapeshifter
Text:Target creature gets +3/-3 until end of turn.
Text:no text
K:spPumpTgtCurse:+3/-3
K:Changeling
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/nameless_inversion.jpg

View File

@@ -1,7 +1,8 @@
Name:Sunlance
ManaCost:W
Types:Sorcery
Text:Sunlance deals 3 damage to target nonwhite creature.
Text:no text
A:SP$DealDamage|Cost$W|ValidTgts$Creature.nonWhite|TgtPrompt$Select target nonwhite Creature|NumDmg$3|SpellDescription$Sunlance deals 3 damage to target nonwhite creature.
SVar:Rarity:Common
SVar:Picture:http://resources.wizards.com/magic/cards/plc/en-us/card122355.jpg
End

View File

@@ -3031,7 +3031,7 @@ public class CardFactory_Instants {
self = self.getType("Land");
opp = opp.getType("Land");
return (self.size() < opp.size()) && super.canPlay();
return (self.size() < opp.size()); // && super.canPlay();
}//oppoMoreLand()
@Override
@@ -3052,7 +3052,7 @@ public class CardFactory_Instants {
card.addSpellAbility(spell);
}//*************** END ************ END **************************
/* converted to keyword
//*************** START *********** START **************************
else if(cardName.equals("Nameless Inversion")) {
SpellAbility spell = new Spell(card) {
@@ -3100,7 +3100,7 @@ public class CardFactory_Instants {
card.setSVar("PlayMain1", "TRUE");
}//*************** END ************ END **************************
*/
//*************** START *********** START **************************
else if(cardName.equals("Primal Boost")) {

View File

@@ -2116,6 +2116,7 @@ public class CardFactory_Sorceries {
spell.setBeforePayMana(target);
}//*************** END ************ END **************************
/* keyworded
//*************** START *********** START **************************
else if(cardName.equals("Sunlance")) {
final SpellAbility spell = new Spell(card) {
@@ -2198,7 +2199,7 @@ public class CardFactory_Sorceries {
spell.setBeforePayMana(target);
}//*************** END ************ END **************************
*/
//*************** START *********** START **************************
else if(cardName.equals("Firebolt")) {