//public override bool hasPrimalForm { get { if (effects.Transform) return false; return base.hasPrimalForm; } } public bool hasMegaForm() { //v=MultipleForms.getMegaForm(this); int?v = MultipleForms.getMegaForm(this); return(v != null); }
public void makeMega() { int?v = MultipleForms.getMegaForm(this); if (v != null) { this.form = v.Value; } }
public bool isMega() { int?v = MultipleForms.getMegaForm(this); return(v != null && v.Value == @form); }