BuffConfig.cs 349 B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. namespace Model
  3. {
  4. public class BuffConfig: AConfig
  5. {
  6. public BuffType Type { get; set; }
  7. public string Name { get; set; }
  8. public long Duration { get; set; }
  9. public int MaxStack { get; set; }
  10. public List<int> Effects { get; set; }
  11. public BuffConfig()
  12. {
  13. this.Effects = new List<int>();
  14. }
  15. }
  16. }