public IngestibleData(Int32 Value, IngestibleFlags Flags, Byte[] Unused, FormID WithdrawalEffect, Single AddictionChance, FormID SoundConsume)
 {
     this.Value            = Value;
     this.Flags            = Flags;
     this.Unused           = Unused;
     this.WithdrawalEffect = WithdrawalEffect;
     this.AddictionChance  = AddictionChance;
     this.SoundConsume     = SoundConsume;
 }
 public IngestibleData(string Tag = null)
     : base(Tag)
 {
     Value            = new Int32();
     Flags            = new IngestibleFlags();
     Unused           = new byte[3];
     WithdrawalEffect = new FormID();
     AddictionChance  = new Single();
     SoundConsume     = new FormID();
 }