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 PT = Karn__Silver_Golem.getPT();
def ST = Karn__Silver_Golem.ST; def ST = Karn__Silver_Golem.getST();
def TP = Karn__Silver_Golem.TP; def TP = Karn__Silver_Golem.getTP();
[ [
new MagicSpellCardEvent() { new MagicSpellCardEvent() {

View File

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

View File

@ -46,6 +46,18 @@ public class Karn__Silver_Golem {
} }
}; };
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( public static final MagicPermanentActivation A =new MagicPermanentActivation(
new MagicCondition[]{MagicConditionFactory.ManaCost("{1}")}, new MagicCondition[]{MagicConditionFactory.ManaCost("{1}")},
new MagicActivationHints(MagicTiming.Animate), new MagicActivationHints(MagicTiming.Animate),