forked from External/mage
Implementing "suspected" mechanic (#11670)
* [MKM] Implement Agrus Kos, Spirit of Justice * rework effects * [MKM] Implement Airtight Alibi * [MKM] Implement Convenient Target * [MKM] Implement Repeat Offender * add test * add more tests * add tooltip for suspected * implement requested changes
This commit is contained in:
parent
ea814ecf0c
commit
5a809f6fe4
13 changed files with 594 additions and 23 deletions
|
|
@ -1993,7 +1993,7 @@ public abstract class GameImpl implements Game {
|
|||
}
|
||||
newBluePrint.assignNewId();
|
||||
if (copyFromPermanent.isTransformed()) {
|
||||
TransformAbility.transformPermanent(newBluePrint,this, source);
|
||||
TransformAbility.transformPermanent(newBluePrint, this, source);
|
||||
}
|
||||
if (copyFromPermanent.isPrototyped()) {
|
||||
Abilities<Ability> abilities = copyFromPermanent.getAbilities();
|
||||
|
|
@ -3552,8 +3552,9 @@ public abstract class GameImpl implements Game {
|
|||
public Map<MageObjectReference, Map<String, Object>> getPermanentCostsTags() {
|
||||
return state.getPermanentCostsTags();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void storePermanentCostsTags(MageObjectReference permanentMOR, Ability source){
|
||||
public void storePermanentCostsTags(MageObjectReference permanentMOR, Ability source) {
|
||||
state.storePermanentCostsTags(permanentMOR, source);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue