[CLB] Implemented Balor

This commit is contained in:
Evan Kranzler 2022-06-06 19:49:42 -04:00
parent a6f977c0e4
commit 1899fa0def
10 changed files with 191 additions and 122 deletions

View file

@ -39,10 +39,10 @@ public interface Target extends Serializable {
/**
* Returns a set of all possible targets that match the criteria of the implemented Target class.
*
* @param sourceControllerId UUID of the ability's controller
* @param source Ability which requires the targets
* @param game Current game
* @return Set of the UUIDs of possible targets
* @param sourceControllerId UUID of the ability's controller
* @param source Ability which requires the targets
* @param game Current game
* @return Set of the UUIDs of possible targets
*/
Set<UUID> possibleTargets(UUID sourceControllerId, Ability source, Game game);
@ -143,7 +143,7 @@ public interface Target extends Serializable {
int getTargetTag();
void setTargetTag(int tag);
Target setTargetTag(int tag);
Target getOriginalTarget();