Beispiel #1
0
 public HpPotion(EItemType mT, EItemFunctionality mF, EPotionType mType, string name, int hptoreturn) : base(mT, mF, mType, name)
 {
     hpToReturn = hptoreturn;
 }
Beispiel #2
0
 public MediumHealingPotion(EItemType mT = EItemType.Potion, EItemFunctionality mF = EItemFunctionality.Consumable, EPotionType mType = EPotionType.Health, string name = "Heal_Potion_2", int hptoreturn = 30)
     : base(mT, mF, mType, name, hptoreturn)
 {
 }
Beispiel #3
0
 public Potion(EItemType mT, EItemFunctionality mF, EPotionType mpotiontype, string name) : base(mT, mF, name)
 {
     mPotionType = mpotiontype;
 }
Beispiel #4
0
 public Item(EItemType mT, EItemFunctionality mF, string name)
 {
     mType          = mT;
     mFunctionality = mF;
     mName          = name;
 }