public CustomPlotTemplate AddAttachment(IModPrefab attachment, params IModPrefab[] attachments)
 {
     this.attachments.Add(attachment);
     this.attachments.AddRange(attachments);
     return(this);
 }
 // TODO: Finish documentation
 public CustomPlotTemplate AddAttachment(IModPrefab attachment)
 {
     attachments.Add(attachment);
     return(this);
 }