Beispiel #1
0
 public FishData(int modelHash, FishLocation fishLocation, FishBait fishBait, float min, float max, string name)
 {
     ModelHash    = modelHash;
     FishLocation = fishLocation;
     FishBait     = fishBait;
     Min          = min;
     Max          = max;
     Name         = name;
 }
Beispiel #2
0
 public FishData(int modelHash, FishLocation fishLocation, FishBait fishBait, float min, float max, string type, string name, string desc)
 {
     ModelHash    = modelHash;
     FishLocation = fishLocation;
     FishBait     = fishBait;
     Min          = min;
     Max          = max;
     Type         = type;
     Name         = name;
     Desc         = desc;
 }
Beispiel #3
0
 public Fishtype(string FishName, int MaxWeight, int MinWeight, int WeightPrice, int Rarity, FishLocation FishLoc) : base()
 {
     this.FishName    = FishName;
     this.MaxWeight   = MaxWeight;
     this.MinWeight   = MinWeight;
     this.WeightPrice = WeightPrice;
     this.Rarity      = Rarity;
     this.FishLoc     = FishLoc;
 }