mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
clean up some TODOs in SpellAbility, Trigger, and CardColor classes
This commit is contained in:
@@ -294,10 +294,10 @@ public final class CardColor implements Comparable<CardColor> {
|
|||||||
/**
|
/**
|
||||||
* Sets the null color.
|
* Sets the null color.
|
||||||
*
|
*
|
||||||
* @param nullColor
|
* @param nullColor0
|
||||||
* the nullColor to set
|
* the nullColor to set
|
||||||
*/
|
*/
|
||||||
public static void setNullColor(final CardColor nullColor) {
|
public static void setNullColor(final CardColor nullColor0) {
|
||||||
CardColor.nullColor = nullColor; // TODO: Add 0 to parameter's name.
|
CardColor.nullColor = nullColor0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1671,7 +1671,7 @@ public abstract class SpellAbility {
|
|||||||
* the isDelve to set
|
* the isDelve to set
|
||||||
*/
|
*/
|
||||||
public final void setIsDelve(final boolean isDelve0) {
|
public final void setIsDelve(final boolean isDelve0) {
|
||||||
this.isDelve = isDelve0; // TODO Add 0 to parameter's name.
|
this.isDelve = isDelve0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -1704,11 +1704,11 @@ public abstract class SpellAbility {
|
|||||||
/**
|
/**
|
||||||
* Sets the chosen target.
|
* Sets the chosen target.
|
||||||
*
|
*
|
||||||
* @param chosenTarget
|
* @param chosenTarget0
|
||||||
* the chosenTarget to set
|
* the chosenTarget to set
|
||||||
*/
|
*/
|
||||||
public void setChosenTarget(final Target chosenTarget) {
|
public void setChosenTarget(final Target chosenTarget0) {
|
||||||
this.chosenTarget = chosenTarget; // TODO: Add 0 to parameter's name.
|
this.chosenTarget = chosenTarget0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ import forge.Constant;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* <p>
|
* <p>
|
||||||
* SpellAbility_Variables class.
|
* SpellAbilityVariables class.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* @author Forge
|
* @author Forge
|
||||||
@@ -632,11 +632,11 @@ public class SpellAbilityVariables {
|
|||||||
/**
|
/**
|
||||||
* Sets the pw ability.
|
* Sets the pw ability.
|
||||||
*
|
*
|
||||||
* @param pwAbility
|
* @param pwAbility0
|
||||||
* the new pw ability
|
* the new pw ability
|
||||||
*/
|
*/
|
||||||
public final void setPwAbility(final boolean pwAbility) {
|
public final void setPwAbility(final boolean pwAbility0) {
|
||||||
this.pwAbility = pwAbility; // TODO Add 0 to parameter's name.
|
this.pwAbility = pwAbility0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -678,11 +678,11 @@ public class SpellAbilityVariables {
|
|||||||
/**
|
/**
|
||||||
* Sets the life total.
|
* Sets the life total.
|
||||||
*
|
*
|
||||||
* @param lifeTotal
|
* @param lifeTotal0
|
||||||
* the lifeTotal to set
|
* the lifeTotal to set
|
||||||
*/
|
*/
|
||||||
public final void setLifeTotal(final String lifeTotal) {
|
public final void setLifeTotal(final String lifeTotal0) {
|
||||||
this.lifeTotal = lifeTotal; // TODO Add 0 to parameter's name.
|
this.lifeTotal = lifeTotal0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -697,11 +697,11 @@ public class SpellAbilityVariables {
|
|||||||
/**
|
/**
|
||||||
* Sets the life amount.
|
* Sets the life amount.
|
||||||
*
|
*
|
||||||
* @param lifeAmount
|
* @param lifeAmount0
|
||||||
* the lifeAmount to set
|
* the lifeAmount to set
|
||||||
*/
|
*/
|
||||||
public final void setLifeAmount(final String lifeAmount) {
|
public final void setLifeAmount(final String lifeAmount0) {
|
||||||
this.lifeAmount = lifeAmount; // TODO Add 0 to parameter's name.
|
this.lifeAmount = lifeAmount0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -716,11 +716,11 @@ public class SpellAbilityVariables {
|
|||||||
/**
|
/**
|
||||||
* Sets the phases.
|
* Sets the phases.
|
||||||
*
|
*
|
||||||
* @param phases
|
* @param phases0
|
||||||
* the new phases
|
* the new phases
|
||||||
*/
|
*/
|
||||||
public final void setPhases(final ArrayList<String> phases) {
|
public final void setPhases(final ArrayList<String> phases0) {
|
||||||
this.phases = phases; // TODO Add 0 to parameter's name.
|
this.phases = phases0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -762,11 +762,11 @@ public class SpellAbilityVariables {
|
|||||||
/**
|
/**
|
||||||
* Sets the s var operand.
|
* Sets the s var operand.
|
||||||
*
|
*
|
||||||
* @param sVarOperand
|
* @param sVarOperand0
|
||||||
* the sVarOperand to set
|
* the sVarOperand to set
|
||||||
*/
|
*/
|
||||||
public final void setsVarOperand(final String sVarOperand) {
|
public final void setsVarOperand(final String sVarOperand0) {
|
||||||
this.sVarOperand = sVarOperand; // TODO Add 0 to parameter's name.
|
this.sVarOperand = sVarOperand0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -800,11 +800,11 @@ public class SpellAbilityVariables {
|
|||||||
/**
|
/**
|
||||||
* Sets the s var operator.
|
* Sets the s var operator.
|
||||||
*
|
*
|
||||||
* @param sVarOperator
|
* @param sVarOperator0
|
||||||
* the sVarOperator to set
|
* the sVarOperator to set
|
||||||
*/
|
*/
|
||||||
public final void setsVarOperator(final String sVarOperator) {
|
public final void setsVarOperator(final String sVarOperator0) {
|
||||||
this.sVarOperator = sVarOperator; // TODO: Add 0 to parameter's name.
|
this.sVarOperator = sVarOperator0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -828,11 +828,11 @@ public class SpellAbilityVariables {
|
|||||||
/**
|
/**
|
||||||
* Sets the cards in hand.
|
* Sets the cards in hand.
|
||||||
*
|
*
|
||||||
* @param cardsInHand
|
* @param cardsInHand0
|
||||||
* the cardsInHand to set
|
* the cardsInHand to set
|
||||||
*/
|
*/
|
||||||
public final void setCardsInHand(final int cardsInHand) {
|
public final void setCardsInHand(final int cardsInHand0) {
|
||||||
this.cardsInHand = cardsInHand; // TODO: Add 0 to parameter's name.
|
this.cardsInHand = cardsInHand0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -853,4 +853,4 @@ public class SpellAbilityVariables {
|
|||||||
return this.anyPlayer;
|
return this.anyPlayer;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // end class SpellAbility_Variables
|
} // end class SpellAbilityVariables
|
||||||
|
|||||||
@@ -114,11 +114,11 @@ public abstract class Trigger {
|
|||||||
/**
|
/**
|
||||||
* Sets the map params.
|
* Sets the map params.
|
||||||
*
|
*
|
||||||
* @param mapParams
|
* @param mapParams0
|
||||||
* the mapParams to set
|
* the mapParams to set
|
||||||
*/
|
*/
|
||||||
public final void setMapParams(final HashMap<String, String> mapParams) {
|
public final void setMapParams(final HashMap<String, String> mapParams0) {
|
||||||
this.mapParams = mapParams; // TODO: Add 0 to parameter's name.
|
this.mapParams = mapParams0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** The run params. */
|
/** The run params. */
|
||||||
@@ -704,11 +704,11 @@ public abstract class Trigger {
|
|||||||
/**
|
/**
|
||||||
* Sets the intrinsic.
|
* Sets the intrinsic.
|
||||||
*
|
*
|
||||||
* @param isIntrinsic
|
* @param isIntrinsic0
|
||||||
* the isIntrinsic to set
|
* the isIntrinsic to set
|
||||||
*/
|
*/
|
||||||
public void setIntrinsic(final boolean isIntrinsic) {
|
public void setIntrinsic(final boolean isIntrinsic0) {
|
||||||
this.isIntrinsic = isIntrinsic; // TODO: Add 0 to parameter's name.
|
this.isIntrinsic = isIntrinsic0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -723,11 +723,11 @@ public abstract class Trigger {
|
|||||||
/**
|
/**
|
||||||
* Sets the run params.
|
* Sets the run params.
|
||||||
*
|
*
|
||||||
* @param runParams
|
* @param runParams0
|
||||||
* the runParams to set
|
* the runParams to set
|
||||||
*/
|
*/
|
||||||
public void setRunParams(final Map<String, Object> runParams) {
|
public void setRunParams(final Map<String, Object> runParams0) {
|
||||||
this.runParams = runParams; // TODO: Add 0 to parameter's name.
|
this.runParams = runParams0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -742,12 +742,11 @@ public abstract class Trigger {
|
|||||||
/**
|
/**
|
||||||
* Sets the overriding ability.
|
* Sets the overriding ability.
|
||||||
*
|
*
|
||||||
* @param overridingAbility
|
* @param overridingAbility0
|
||||||
* the overridingAbility to set
|
* the overridingAbility to set
|
||||||
*/
|
*/
|
||||||
public void setOverridingAbility(final SpellAbility overridingAbility) {
|
public void setOverridingAbility(final SpellAbility overridingAbility0) {
|
||||||
this.overridingAbility = overridingAbility; // TODO: Add 0 to
|
this.overridingAbility = overridingAbility0;
|
||||||
// parameter's name.
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -762,10 +761,10 @@ public abstract class Trigger {
|
|||||||
/**
|
/**
|
||||||
* Sets the id.
|
* Sets the id.
|
||||||
*
|
*
|
||||||
* @param id
|
* @param id0
|
||||||
* the id to set
|
* the id to set
|
||||||
*/
|
*/
|
||||||
public void setId(final int id) {
|
public void setId(final int id0) {
|
||||||
this.id = id; // TODO: Add 0 to parameter's name.
|
this.id = id0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user