Change all line endings to LF

This commit is contained in:
Fenhl 2016-04-13 16:34:45 +00:00
parent 13d9a56b7a
commit 430ae503c7
17069 changed files with 1263498 additions and 1263497 deletions

View file

@ -1,62 +1,62 @@
package mage.constants;
/**
*
* @author North
*/
public enum Outcome {
Damage(false),
DestroyPermanent(false),
BoostCreature(true),
UnboostCreature(false),
AddAbility(true),
LoseAbility(false),
GainLife(true),
LoseLife(false),
ExtraTurn(true),
BecomeCreature(true),
PutCreatureInPlay(true),
PutCardInPlay(true),
PutLandInPlay(true),
GainControl(false),
DrawCard(true),
Discard(false),
Sacrifice(false),
PlayForFree(true),
ReturnToHand(false),
Exile(false),
Protect(true),
PutManaInPool(true),
Regenerate(true),
PreventDamage(true),
RedirectDamage(true),
Tap(false),
Transform(true),
Untap(true),
Win(true),
Copy(true, true),
Benefit(true),
Detriment(false),
Neutral(true),
Removal(false),
AIDontUseIt(false);
private final boolean good;
private boolean canTargetAll;
Outcome(boolean good) {
this.good = good;
}
Outcome(boolean good, boolean canTargetAll) {
this.good = good;
this.canTargetAll = canTargetAll;
}
public boolean isGood() {
return good;
}
public boolean isCanTargetAll() {
return canTargetAll;
}
}
package mage.constants;
/**
*
* @author North
*/
public enum Outcome {
Damage(false),
DestroyPermanent(false),
BoostCreature(true),
UnboostCreature(false),
AddAbility(true),
LoseAbility(false),
GainLife(true),
LoseLife(false),
ExtraTurn(true),
BecomeCreature(true),
PutCreatureInPlay(true),
PutCardInPlay(true),
PutLandInPlay(true),
GainControl(false),
DrawCard(true),
Discard(false),
Sacrifice(false),
PlayForFree(true),
ReturnToHand(false),
Exile(false),
Protect(true),
PutManaInPool(true),
Regenerate(true),
PreventDamage(true),
RedirectDamage(true),
Tap(false),
Transform(true),
Untap(true),
Win(true),
Copy(true, true),
Benefit(true),
Detriment(false),
Neutral(true),
Removal(false),
AIDontUseIt(false);
private final boolean good;
private boolean canTargetAll;
Outcome(boolean good) {
this.good = good;
}
Outcome(boolean good, boolean canTargetAll) {
this.good = good;
this.canTargetAll = canTargetAll;
}
public boolean isGood() {
return good;
}
public boolean isCanTargetAll() {
return canTargetAll;
}
}