Ejemplo n.º 1
0
 public ModifyUntil(TargetRule t, Modifiable attribute, Clojurex filter, int value)
     : base(t)
 {
     this.attribute = attribute;
     this.filter = filter;
     this.value = value;
 }
Ejemplo n.º 2
0
 public ModifyCardEvent(Card card, Modifiable m, Clojurex c, int value)
     : base(GameEventType.MODIFYCARD)
 {
     this.card = card;
     modifiable = m;
     this.value = value;
     clojure = c;
 }
Ejemplo n.º 3
0
 public void modify(Modifiable m, int v, Clojurex c)
 {
     mods[(int)m].addModifier(v, c);
     notifyObservers();
 }