Exemplo n.º 1
0
 public Consumable(string name, string description, int CEV, double weight) : base(name, description, CEV, weight)
 {
     this.hpEffect = NullableBoolean.Null;
     hpEffectValue = null;
 }
Exemplo 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;
 }
Exemplo n.º 3
0
 public Consumable(string name, string description, int currencyEquivalentValue) : base(name, description, currencyEquivalentValue)
 {
     this.hpEffect = NullableBoolean.Null;
     hpEffectValue = null;
 }