Esempio n. 1
0
 public Consumable(string name, string description, int CEV, double weight) : base(name, description, CEV, weight)
 {
     this.hpEffect = NullableBoolean.Null;
     hpEffectValue = null;
 }
Esempio n. 2
0
 public Consumable(string name, string description, int CEV, double weight, NullableBoolean hpEffect, DieFormula HPEV) : base(name, description, CEV, weight)
 {
     this.hpEffect      = hpEffect;
     this.hpEffectValue = HPEV;
 }
Esempio n. 3
0
 public Consumable(string name, string description, int currencyEquivalentValue) : base(name, description, currencyEquivalentValue)
 {
     this.hpEffect = NullableBoolean.Null;
     hpEffectValue = null;
 }