public void Add(Technic technic) => this.technics.Add(technic);
public void Remove(Technic _) => this.technics.Remove(_);
public void Set(int i, Technic technic) { this.technics[i - 1] = (Technic)technic.Clone(); }