forked from External/mage
Dymamic Values, Sigil of Distinction as example, tooltip is generated badly
This commit is contained in:
parent
cba120cb24
commit
d06b3a924b
6 changed files with 274 additions and 10 deletions
11
Mage/src/mage/abilities/dynamicvalue/DynamicValue.java
Normal file
11
Mage/src/mage/abilities/dynamicvalue/DynamicValue.java
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
package mage.abilities.dynamicvalue;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.game.Game;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public interface DynamicValue extends Serializable {
|
||||
int calculate(Game game, Ability sourceAbility);
|
||||
DynamicValue clone();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue