mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
merge latest trunk
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -7384,6 +7384,7 @@ res/cardsfolder/o/oonas_blackguard.txt svneol=native#text/plain
|
||||
res/cardsfolder/o/oonas_gatewarden.txt svneol=native#text/plain
|
||||
res/cardsfolder/o/oonas_grace.txt svneol=native#text/plain
|
||||
res/cardsfolder/o/oonas_prowler.txt -text
|
||||
res/cardsfolder/o/ooze_flux.txt -text
|
||||
res/cardsfolder/o/ooze_garden.txt svneol=native#text/plain
|
||||
res/cardsfolder/o/opal_acrolith.txt svneol=native#text/plain
|
||||
res/cardsfolder/o/opal_archangel.txt svneol=native#text/plain
|
||||
|
||||
@@ -57,6 +57,11 @@ Taniwha
|
||||
Natural Balance
|
||||
Balancing Act
|
||||
Odds // Ends
|
||||
Mana Clash
|
||||
Goblin Assassin
|
||||
Chain Lightning
|
||||
Chain of Vapor
|
||||
Vision Charm
|
||||
|
||||
|
||||
New Phenomenons:
|
||||
|
||||
9
res/cardsfolder/o/ooze_flux.txt
Normal file
9
res/cardsfolder/o/ooze_flux.txt
Normal file
@@ -0,0 +1,9 @@
|
||||
Name:Ooze Flux
|
||||
ManaCost:3 G
|
||||
Types:Enchantment
|
||||
A:AB$ Token | Announce$ X | Cost$ XCantBe0 1 G SubCounter<X/P1P1/Creature/among creatures you control> | TokenAmount$ 1 | TokenName$ Ooze | TokenTypes$ Creature,Ooze | TokenOwner$ You | TokenImage$ G X X Ooze | TokenColors$ Green | TokenPower$ X | TokenToughness$ X | SpellDescription$ Put a green Saproling creature token onto the battlefield. It has "This creature's power and toughness are each equal to the number of fade counters on CARDNAME."
|
||||
SVar:X:Count$xPaid
|
||||
SVar:RemAIDeck:True
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/ooze_flux.jpg
|
||||
Oracle:{1}{G}, Remove one or more +1/+1 counters from among creatures you control: Put an X/X green Ooze creature token onto the battlefield, where X is the number of +1/+1 counters removed this way.
|
||||
SetInfo:GTC Rare
|
||||
@@ -2,7 +2,7 @@ Name:Sabertooth Cobra
|
||||
ManaCost:2 G
|
||||
Types:Creature Snake
|
||||
PT:2/2
|
||||
T:Mode$ DamageDone | ValidSource$ Card.Self | ValidTarget$ Player | CombatDamage$ True | Execute$ PoisonTarget | TriggerZones$ Battlefield | TriggerDescription$ Whenever CARDNAME deals damage to a player, he or she gets a poison counter. That player gets another poison counter at the beginning of his or her next upkeep unless he or she pays 2 before that turn. (A player with ten or more poison counters loses the game.)
|
||||
T:Mode$ DamageDone | ValidSource$ Card.Self | ValidTarget$ Player | Execute$ PoisonTarget | TriggerZones$ Battlefield | TriggerDescription$ Whenever CARDNAME deals damage to a player, he or she gets a poison counter. That player gets another poison counter at the beginning of his or her next upkeep unless he or she pays 2 before that turn. (A player with ten or more poison counters loses the game.)
|
||||
SVar:PoisonTarget:AB$ Poison | Cost$ 0 | Num$ 1 | Defined$ TriggeredTarget | SubAbility$ CobraEffect
|
||||
SVar:CobraEffect:DB$ Effect | Name$ Sabertooth Cobra Effect | EffectOwner$ TriggeredTarget | Duration$ Permanent | Triggers$ PoisonTrig | RememberObjects$ TriggeredTarget | Abilities$ PayUp | SVars$ Bleed,ExileEffect
|
||||
SVar:PoisonTrig:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ Player.IsRemembered | TriggerZones$ Command | Execute$ Bleed | TriggerDescription$ You get another poison counter at the beginning of your next upkeep unless you pay 2 before that turn.
|
||||
|
||||
@@ -124,6 +124,7 @@ http://www.cardforge.org/fpics/questAvatars/Magneto.jpg
|
||||
http://www.cardforge.org/fpics/questAvatars/Magnum.jpg
|
||||
http://www.cardforge.org/fpics/questAvatars/Marge%20Simpson.jpg
|
||||
http://www.cardforge.org/fpics/questAvatars/Milhouse_van_Houten.jpg
|
||||
http://www.cardforge.org/fpics/questAvatars/Minerva%20McGonagall.jpg
|
||||
http://www.cardforge.org/fpics/questAvatars/Mines%20of%20Kazum%20Durl.jpg
|
||||
http://www.cardforge.org/fpics/questAvatars/Mister%20Fantastic.jpg
|
||||
http://www.cardforge.org/fpics/questAvatars/Morpheus.jpg
|
||||
|
||||
@@ -194,6 +194,14 @@ public class CostPayment {
|
||||
this.payCost();
|
||||
}
|
||||
|
||||
/**
|
||||
* Cancel cost (including CostPart for refunding).
|
||||
*/
|
||||
public final void cancelCost(final CostPart part) {
|
||||
this.setPaidManaPart(part);
|
||||
this.cancelCost();
|
||||
}
|
||||
|
||||
/**
|
||||
* Cancel cost.
|
||||
*/
|
||||
|
||||
@@ -106,7 +106,9 @@ public class CostRemoveCounter extends CostPartWithList {
|
||||
@Override
|
||||
public boolean isReusable() { return true; }
|
||||
|
||||
|
||||
@Override
|
||||
public boolean isUndoable() { return true; }
|
||||
|
||||
/*
|
||||
* (non-Javadoc)
|
||||
*
|
||||
@@ -145,8 +147,9 @@ public class CostRemoveCounter extends CostPartWithList {
|
||||
*/
|
||||
@Override
|
||||
public final void refund(final Card source) {
|
||||
int refund = this.getList().size() == 1 ? this.lastPaidAmount : 1;
|
||||
for (final Card c : this.getList()) {
|
||||
c.addCounter(this.counter, this.lastPaidAmount, false);
|
||||
c.addCounter(this.counter, refund, false);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -224,6 +227,16 @@ public class CostRemoveCounter extends CostPartWithList {
|
||||
int maxCounters = 0;
|
||||
|
||||
if (!this.isTargetingThis()) {
|
||||
if (c == null) {
|
||||
final String sVar = ability.getSVar(amount);
|
||||
// Generalize this
|
||||
if (sVar.equals("XChoice")) {
|
||||
c = CostUtil.chooseXValue(source, ability, maxCounters);
|
||||
} else {
|
||||
c = AbilityUtils.calculateAmount(source, amount, ability);
|
||||
}
|
||||
}
|
||||
|
||||
if (this.getZone().equals(ZoneType.Battlefield)) {
|
||||
final Input inp = CostRemoveCounter.removeCounterType(ability, this.getType(), payment, this, c);
|
||||
Singletons.getModel().getMatch().getInput().setInputInterrupt(inp);
|
||||
@@ -341,14 +354,13 @@ public class CostRemoveCounter extends CostPartWithList {
|
||||
final StringBuilder msg = new StringBuilder("Remove ");
|
||||
final int nLeft = nNeeded - this.nRemove;
|
||||
msg.append(nLeft).append(" ");
|
||||
msg.append(costRemoveCounter.getCounter()).append(" from ");
|
||||
|
||||
msg.append(costRemoveCounter.getCounter().getName()).append(" counters from ");
|
||||
msg.append(costRemoveCounter.getDescriptiveType());
|
||||
if (nLeft > 1) {
|
||||
msg.append("s");
|
||||
}
|
||||
|
||||
this.typeList = CardLists.getValidCards(sa.getActivatingPlayer().getCardsIn(costRemoveCounter.getZone()), type.split(";"), sa.getActivatingPlayer(), sa.getSourceCard());
|
||||
|
||||
// TODO Tabulate typelist vs nNeeded to see if there are enough counters to remove
|
||||
|
||||
CMatchUI.SINGLETON_INSTANCE.showMessage(msg.toString());
|
||||
ButtonUtil.enableOnlyCancel();
|
||||
}
|
||||
@@ -377,14 +389,14 @@ public class CostRemoveCounter extends CostPartWithList {
|
||||
|
||||
public void done() {
|
||||
this.stop();
|
||||
costRemoveCounter.addListToHash(sa, "CounterPut");
|
||||
costRemoveCounter.addListToHash(sa, "CounterRemove");
|
||||
payment.paidCost(costRemoveCounter);
|
||||
}
|
||||
|
||||
public void cancel() {
|
||||
this.stop();
|
||||
costRemoveCounter.addListToHash(sa, "CounterPut");
|
||||
payment.cancelCost();
|
||||
costRemoveCounter.addListToHash(sa, "CounterRemove");
|
||||
payment.cancelCost(costRemoveCounter);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -464,13 +476,13 @@ public class CostRemoveCounter extends CostPartWithList {
|
||||
|
||||
public void done() {
|
||||
this.stop();
|
||||
costRemoveCounter.addListToHash(sa, "CounterPut");
|
||||
costRemoveCounter.addListToHash(sa, "CounterRemove");
|
||||
payment.paidCost(costRemoveCounter);
|
||||
}
|
||||
|
||||
public void cancel() {
|
||||
this.stop();
|
||||
costRemoveCounter.addListToHash(sa, "CounterPut");
|
||||
costRemoveCounter.addListToHash(sa, "CounterRemove");
|
||||
payment.cancelCost();
|
||||
}
|
||||
};
|
||||
|
||||
@@ -202,16 +202,7 @@ public class SpellAbilityRequirements {
|
||||
* </p>
|
||||
*/
|
||||
public final void finishPaying() {
|
||||
if (this.isFree || this.payment.isAllPaid()) {
|
||||
if (this.skipStack) {
|
||||
AbilityUtils.resolve(this.ability, false);
|
||||
} else {
|
||||
this.addAbilityToStack();
|
||||
}
|
||||
|
||||
this.select.resetTargets();
|
||||
Singletons.getModel().getGame().getAction().checkStateEffects();
|
||||
} else if (this.payment.isCanceled()) {
|
||||
if (this.payment.isCanceled()) {
|
||||
final Card c = this.ability.getSourceCard();
|
||||
|
||||
// split cards transform back to full form if mana cost is not paid
|
||||
@@ -234,6 +225,16 @@ public class SpellAbilityRequirements {
|
||||
this.payment.cancelPayment();
|
||||
Singletons.getModel().getGame().getStack().clearFrozen();
|
||||
}
|
||||
else if (this.isFree || this.payment.isAllPaid()) {
|
||||
if (this.skipStack) {
|
||||
AbilityUtils.resolve(this.ability, false);
|
||||
} else {
|
||||
this.addAbilityToStack();
|
||||
}
|
||||
|
||||
this.select.resetTargets();
|
||||
Singletons.getModel().getGame().getAction().checkStateEffects();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user