mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
Convert Rampaging Baloths to Trigger.
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
Name:Rampaging Baloths
|
||||
ManaCost:4 G G
|
||||
Types:Creature Beast
|
||||
Text:Landfall - Whenever a land enters the battlefield under your control, you may put a 4/4 green Beast creature token onto the battlefield.
|
||||
Text:
|
||||
PT:6/6
|
||||
K:Trample
|
||||
K:Landfall
|
||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Land.YouCtrl | TriggerZones$ Battlefield | Execute$ TrigToken | TriggerDescription$ Landfall - Whenever a land enters the battlefield under your control, you may put a 4/4 green Beast creature token onto the battlefield.
|
||||
SVar:TrigToken:AB$Token | Cost$ 0 | TokenAmount$ 1 | TokenName$ Beast | TokenTypes$ Creature,Beast | TokenOwner$ Controller | TokenColors$ Green | TokenPower$ 4 | TokenToughness$ 4
|
||||
SVar:Rarity:Mythic
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/rampaging_baloths.jpg
|
||||
SetInfo:ZEN|Mythic|http://magiccards.info/scans/en/zen/178.jpg
|
||||
|
||||
@@ -4810,9 +4810,7 @@ public class GameActionUtil {
|
||||
if (kw.equals("Landfall - Whenever a land enters the battlefield under your control, CARDNAME gets +2/+2 until end of turn."))
|
||||
landfall_Generic_P2P2_UntilEOT(c);
|
||||
}
|
||||
|
||||
if(c.getName().equals("Rampaging Baloths")) landfall_Rampaging_Baloths(c);
|
||||
else if(c.getName().equals("Emeria Angel")) landfall_Emeria_Angel(c);
|
||||
if(c.getName().equals("Emeria Angel")) landfall_Emeria_Angel(c);
|
||||
else if(c.getName().equals("Ob Nixilis, the Fallen")) landfall_Ob_Nixilis(c);
|
||||
else if(c.getName().equals("Ior Ruin Expedition")
|
||||
|| c.getName().equals("Khalni Heart Expedition")) landfall_AddQuestCounter(c);
|
||||
@@ -5031,28 +5029,6 @@ public class GameActionUtil {
|
||||
AllZone.Stack.add(ability);
|
||||
}
|
||||
|
||||
private static void landfall_Rampaging_Baloths(Card c) {
|
||||
final Card crd = c;
|
||||
Ability ability = new Ability(c, "0") {
|
||||
@Override
|
||||
public void resolve() {
|
||||
CardFactoryUtil.makeToken("Beast", "G 4 4 Beast", crd.getController(), "G", new String[] {"Creature", "Beast"}, 4,
|
||||
4, new String[] {""});
|
||||
}
|
||||
};
|
||||
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(c.getName()).append(" - Landfall: ").append(c.getController());
|
||||
sb.append(" puts a 4/4 green Beast creature token onto the battlefield.");
|
||||
ability.setStackDescription(sb.toString());
|
||||
|
||||
if(c.getController().equals(AllZone.HumanPlayer)) {
|
||||
if(showLandfallDialog(c)) AllZone.Stack.add(ability);
|
||||
}
|
||||
|
||||
else if(c.getController().equals(AllZone.ComputerPlayer)) AllZone.Stack.add(ability);
|
||||
|
||||
}
|
||||
|
||||
private static void landfall_Emeria_Angel(Card c) {
|
||||
final Card crd = c;
|
||||
|
||||
Reference in New Issue
Block a user