Start adding in Dice Roll effects

This commit is contained in:
spjspj 2017-12-10 22:49:55 +11:00
parent 6fa2f70ad1
commit 8e3daf54a9
9 changed files with 424 additions and 1 deletions

View file

@ -417,6 +417,10 @@ public interface Player extends MageItem, Copyable<Player> {
boolean flipCoin(Game game, ArrayList<UUID> appliedEffects);
int rollDice(Game game, int numSides);
int rollDice(Game game, ArrayList<UUID> appliedEffects, int numSides);
@Deprecated
void discard(int amount, Ability source, Game game);