mirror of
https://github.com/correl/mage.git
synced 2024-11-28 19:19:55 +00:00
Added missing attributes to config.cml for release.
This commit is contained in:
parent
3134900a73
commit
dc04058b00
2 changed files with 11 additions and 13 deletions
|
@ -43,7 +43,9 @@
|
||||||
maxSecondsIdle="600"
|
maxSecondsIdle="600"
|
||||||
minUserNameLength="3"
|
minUserNameLength="3"
|
||||||
maxUserNameLength="14"
|
maxUserNameLength="14"
|
||||||
userNamePattern="[^a-z0-9_]"
|
invalidUserNamePattern="[^a-z0-9_]"
|
||||||
|
minPasswordLength="8"
|
||||||
|
maxPasswordLength="100"
|
||||||
maxAiOpponents="15"
|
maxAiOpponents="15"
|
||||||
saveGameActivated="false"
|
saveGameActivated="false"
|
||||||
authenticationActivated="false"
|
authenticationActivated="false"
|
||||||
|
|
|
@ -60,10 +60,6 @@ public class Crystallization extends CardImpl {
|
||||||
this.expansionSetCode = "ARB";
|
this.expansionSetCode = "ARB";
|
||||||
this.subtype.add("Aura");
|
this.subtype.add("Aura");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Enchant creature
|
// Enchant creature
|
||||||
TargetPermanent auraTarget = new TargetCreaturePermanent();
|
TargetPermanent auraTarget = new TargetCreaturePermanent();
|
||||||
this.getSpellAbility().addTarget(auraTarget);
|
this.getSpellAbility().addTarget(auraTarget);
|
||||||
|
|
Loading…
Reference in a new issue