fix scripts

master
melvin 2013-05-19 13:52:29 +08:00
parent e105a5dc12
commit 18aa62584d
3 changed files with 16 additions and 4 deletions

View File

@ -1,6 +1,6 @@
def PT = Karn__Silver_Golem.PT;
def ST = Karn__Silver_Golem.ST;
def TP = Karn__Silver_Golem.TP;
def PT = Karn__Silver_Golem.getPT();
def ST = Karn__Silver_Golem.getST();
def TP = Karn__Silver_Golem.getTP();
[
new MagicSpellCardEvent() {

View File

@ -13,7 +13,7 @@
),
otherPermanent.getPower(),
this,
"PN may$ put RN +1/+1 counters on SN."
"PN may\$ put RN +1/+1 counters on SN."
) :
MagicEvent.NONE;
}

View File

@ -45,6 +45,18 @@ public class Karn__Silver_Golem {
return permanent.getController() == player ? -score:score;
}
};
public static MagicStatic getPT() {
return PT;
}
public static MagicStatic getST() {
return ST;
}
public static MagicTargetPicker<MagicPermanent> getTP() {
return TP;
}
public static final MagicPermanentActivation A =new MagicPermanentActivation(
new MagicCondition[]{MagicConditionFactory.ManaCost("{1}")},