Example #1
0
 public UnaryPrefix(SymbolToken operator_, Formula operand)
 {
     this.operator_ = operator_;
     this.operand = operand;
 }
Example #2
0
 public Advantage(ParsedThing parsedThing, Formula costFormula)
     : base(parsedThing)
 {
     this.costFormula = costFormula;
 }
Example #3
0
 protected Effect(GurpsProperty owner, string traitName, Formula formula, ParsedThing parsedThing)
 {
     this.owner = owner;
     this.traitName = traitName;
     this.formula = formula;
     this.parsedThing = parsedThing;
 }
Example #4
0
 public Conditional(SymbolToken ifToken, Formula condition, Formula thenPart)
     : base(ifToken)
 {
     this.condition = condition;
     this.thenPart = thenPart;
 }
Example #5
0
 public CostModifier(GurpsProperty owner, string traitName, Formula formula, ParsedThing parsedThing)
     : base(owner, traitName, formula, parsedThing)
 {
 }
Example #6
0
 public BooleanAdvantage(ParsedThing parsedThing, Formula costFormula)
     : base(parsedThing, costFormula)
 {
     formattingFunction = intToBoolFormattingFunction;
 }
Example #7
0
 public Skill(ParsedThing parsedThing, SkillDifficulty difficulty, Formula formula)
     : base(parsedThing)
 {
     this.difficulty = difficulty;
     this.formula = formula;
 }
Example #8
0
 public AttributeFunction(ParsedThing parsedThing, Formula formula)
     : base(parsedThing)
 {
     this.formula = formula;
 }
Example #9
0
 public IntAdvantage(ParsedThing parsedThing, Formula costFormula)
     : base(parsedThing, costFormula)
 {
 }