Energizer
Post MTG Forge Related Programming Questions Here
	Moderators: timmermac, Agetian, friarsol, Blacksmith, KrazyTheFox, CCGHQ Admins
			2 posts
			 • Page 1 of 1
		
	
Energizer
 by zerker2000 » 02 Oct 2009, 23:19
by zerker2000 » 02 Oct 2009, 23:19 
- Code: Select all
- Energizer
 4
 Artifact Creature Juggernaut
 no text
 2/2
- Code: Select all
- if(cardName.equals("Energizer"))
 {
 Ability_Tap ability = new Ability_Tap(card, "2")
 {
 public void resolve()
 {
 card.addCounter(Counters.P1P1,1);
 }
 public boolean canPlayAI()
 {
 return(true);
 }
 };
 ability.setDescription("2, T: Put a +1/+1 counter on Energizer.");
 ability.setStackDescription("Put a +1/+1 counter on target Energizer.");
 card.addSpellAbility(ability);
 }
O forest, hold thy wand'ring son
Though fears assail the door.
O foliage, cloak thy ravaged one
In vestments cut for war.
--Eladamri, the Seed of Freyalise
		Though fears assail the door.
O foliage, cloak thy ravaged one
In vestments cut for war.
--Eladamri, the Seed of Freyalise
- zerker2000
- Programmer
- Posts: 569
- Joined: 09 May 2009, 21:40
- Location: South Pasadena, CA
- Has thanked: 0 time
- Been thanked: 0 time
Re: Energizer
 by Marek14 » 03 Oct 2009, 06:57
by Marek14 » 03 Oct 2009, 06:57 
Could be used for Arcbound Ravager, in combination with Modular code?zerker2000 wrote:
- Code: Select all
Energizer
4
Artifact Creature Juggernaut
no text
2/2
- Code: Select all
if(cardName.equals("Energizer"))
{
Ability_Tap ability = new Ability_Tap(card, "2")
{
public void resolve()
{
card.addCounter(Counters.P1P1,1);
}
public boolean canPlayAI()
{
return(true);
}
};
ability.setDescription("2, T: Put a +1/+1 counter on Energizer.");
ability.setStackDescription("Put a +1/+1 counter on target Energizer.");
card.addSpellAbility(ability);
}
Also, a note - I noticed that MTG Forge has Dragon Blood, but not its dark twin, Gnarled Effigy.
			2 posts
			 • Page 1 of 1
		
	
Who is online
Users browsing this forum: No registered users and 32 guests
