mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- 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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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")) {
|
||||
|
||||
@@ -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")) {
|
||||
|
||||
Reference in New Issue
Block a user