protected IntPropModifier(IntPropModifier origin)
 {
     propertyName = origin.getPropName();
     value        = origin.value;
     isSet        = origin.isSet;
 }
 public static Task <IPropChangeEventArg> setIntPropModifierValue(IGame game, [ActionNodeParam("Card")] Card card, [ActionNodeParam("Modifier")] IntPropModifier modifier, [ActionNodeParam("Value")] int value)
 {
     return(modifier.setValue(game, card, value));
 }
 protected IntPropModifier(IntPropModifier origin) : base(origin)
 {
     isSet = origin.isSet;
 }