Fixed wrong/miss numbers in card rules (see #10067 and prev commit)

This commit is contained in:
Oleg Agafonov 2023-02-25 14:34:26 +04:00
parent 99d1800214
commit 5c30467c48
75 changed files with 105 additions and 88 deletions

View file

@ -88,10 +88,16 @@ public interface Target extends Serializable {
void updateTarget(UUID targetId, Game game);
/**
* @return full description with target name, amount, etc (uses in abilities/rules/cost)
*/
String getDescription();
String getMessage();
/**
* @return single target name
*/
String getTargetName();
void setTargetName(String name);