예제 #1
0
파일: Effect.cs 프로젝트: shtonki/cardstone
 public ModifyUntil(TargetRule t, Modifiable attribute, Clojurex filter, int value)
     : base(t)
 {
     this.attribute = attribute;
     this.filter = filter;
     this.value = value;
 }
예제 #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;
 }
예제 #3
0
파일: Card.cs 프로젝트: shtonki/cardstone
 public void modify(Modifiable m, int v, Clojurex c)
 {
     mods[(int)m].addModifier(v, c);
     notifyObservers();
 }