Example #1
0
 private void CostCuringLabelUpdate()
 {
     CostCuringLabel.Text = Zoo.ConvertMoney(CuringPrice);
 }
Example #2
0
 private int SatietyFirstValue()
 {
     return(MaxSatiety / 2 + Zoo.RandomInt(MaxSatiety / 4 + 1));
 }
Example #3
0
 private void CostLvlupLabelUpdate()
 {
     CostLvlupLabel.Text = Zoo.ConvertMoney(LvlupPrice);
 }
Example #4
0
 private void TigerPriceLabelUpdate()
 {
     TigerPriceLabel.Text = Zoo.ConvertMoney(Tiger.BuyingPriceStatic);
 }
Example #5
0
 private int HelthFirstValue()
 {
     return(MaxHelth - Zoo.RandomInt(MaxHelth / 4 + 1));
 }
Example #6
0
 private void WildcatPriceLabelUpdate()
 {
     WildcatPriceLabel.Text = Zoo.ConvertMoney(Wildcat.BuyingPriceStatic);
 }
Example #7
0
 private void WolfPriceLabelUpdate()
 {
     WolfPriceLabel.Text = Zoo.ConvertMoney(Wolf.BuyingPriceStatic);
 }
Example #8
0
 private void RaccoonPriceLabelUpdate()
 {
     RaccoonPriceLabel.Text = Zoo.ConvertMoney(Raccoon.BuyingPriceStatic);
 }
Example #9
0
 public void SetReference(Zoo ZooRef)
 {
     this.ZooRef = ZooRef;
 }
Example #10
0
 void RefreshLabelsInForm()
 {
     MainFormRef.RefreshMoneyLabel(Zoo.ConvertMoney(Zoo.Money));
     MainFormRef.RefreshNewCagePriceLabel(Zoo.ConvertMoney(Cages.NextCagePrice));
 }