mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
*Added Stone Giant
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -4196,6 +4196,7 @@ res/cardsfolder/stolen_grain.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/stomper_cub.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/stomping_ground.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/stone_calendar.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/stone_giant.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/stone_golem.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/stone_kavu.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/stone_rain.txt -text svneol=native#text/plain
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
#Uses Card-specific code!
|
||||
Name:Galvanic Blast
|
||||
ManaCost:R
|
||||
Types:Instant
|
||||
@@ -6,3 +5,4 @@ Text:Galvanic Blast deals 2 damage to target creature or player.\r\nMetalcraft -
|
||||
SVar:Rarity:Common
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/galvanic_blast.jpg
|
||||
End
|
||||
#Uses Card-specific code!
|
||||
@@ -1,4 +1,3 @@
|
||||
#Uses card-specific code!
|
||||
Name:Pithing Needle
|
||||
ManaCost:1
|
||||
Types:Artifact
|
||||
@@ -7,3 +6,4 @@ SVar:Rarity:Rare
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/pithing_needle.jpg
|
||||
SVar:RemAIDeck:True
|
||||
End
|
||||
#Uses card-specific code!
|
||||
9
res/cardsfolder/stone_giant.txt
Normal file
9
res/cardsfolder/stone_giant.txt
Normal file
@@ -0,0 +1,9 @@
|
||||
Name:Stone Giant
|
||||
ManaCost:2 R R
|
||||
Types:Creature Giant
|
||||
Text:no text
|
||||
PT:3/4
|
||||
SVar:Rarity:Uncommon
|
||||
SVar:RemAIDeck:True
|
||||
End
|
||||
#Uses card-specific code!
|
||||
@@ -94,7 +94,68 @@ public class CardFactory_Creatures {
|
||||
|
||||
return newCard;
|
||||
}//*************** END ************ END **************************
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Stone Giant")) {
|
||||
final ArrayList<Card> Tgt = new ArrayList<Card>();
|
||||
|
||||
final Command untilEOT = new Command() {
|
||||
|
||||
private static final long serialVersionUID = -6829468812598100958L;
|
||||
|
||||
//@Override
|
||||
public void execute() {
|
||||
for(Card c : Tgt)
|
||||
{
|
||||
AllZone.GameAction.destroy(c);
|
||||
}
|
||||
Tgt.clear();
|
||||
}
|
||||
};
|
||||
|
||||
final SpellAbility ability = new Ability_Tap(card) {
|
||||
|
||||
private static final long serialVersionUID = -807485081546883513L;
|
||||
|
||||
public void resolve() {
|
||||
getTargetCard().addOtherExtrinsicKeyword("Flying");
|
||||
Tgt.add(getTargetCard());
|
||||
AllZone.EndOfTurn.addAt(untilEOT);
|
||||
}
|
||||
|
||||
public boolean canPlay() {
|
||||
CardList creats = new CardList(AllZone.getZone(Constant.Zone.Play,card.getController()).getCards());
|
||||
|
||||
creats = creats.filter(new CardListFilter() {
|
||||
public boolean addCard(Card c) {
|
||||
return c.getType().contains("Creature") && c.getNetDefense() < card.getNetAttack();
|
||||
}
|
||||
});
|
||||
|
||||
return creats.size() > 0 && !card.isTapped() && !card.isSick();
|
||||
}
|
||||
};
|
||||
|
||||
Input runtime = new Input() {
|
||||
|
||||
private static final long serialVersionUID = 2101131021036402902L;
|
||||
|
||||
@Override
|
||||
public void showMessage() {
|
||||
CardList valids = new CardList(AllZone.getZone(Constant.Zone.Play,card.getController()).getCards());
|
||||
valids = valids.filter(new CardListFilter() {
|
||||
public boolean addCard(Card c) {
|
||||
return c.getNetDefense() < card.getNetAttack();
|
||||
}
|
||||
});
|
||||
|
||||
stopSetNext(CardFactoryUtil.input_targetSpecific(ability,valids,"Select target creature you control with toughness less than Stone Giant's power.",true,false));
|
||||
}
|
||||
};
|
||||
ability.setBeforePayMana(runtime);
|
||||
ability.setDescription("Tap: Target creature you control with toughness less than Stone Giant's power gains flying until end of turn. Destroy that creature at the beginning of the next end step.");
|
||||
|
||||
card.addSpellAbility(ability);
|
||||
}//*************** END ************ END **************************
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Belligerent Hatchling") || cardName.equals("Noxious Hatchling")
|
||||
|| cardName.equals("Shrewd Hatchling") || cardName.equals("Sturdy Hatchling")
|
||||
|
||||
Reference in New Issue
Block a user