gilded_rose.py 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # -*- coding: utf-8 -*-
  2. class GildedRose(object):
  3. def __init__(self, items):
  4. self.items = items
  5. def update_quality(self):
  6. for item in self.items:
  7. if item.name != "Aged Brie" and item.name != "Backstage passes to a TAFKAL80ETC concert":
  8. if item.quality > 0:
  9. if item.name != "Sulfuras, Hand of Ragnaros":
  10. item.quality = item.quality - 1
  11. else:
  12. if item.quality < 50:
  13. item.quality = item.quality + 1
  14. if item.name == "Backstage passes to a TAFKAL80ETC concert":
  15. if item.sell_in < 11:
  16. if item.quality < 50:
  17. item.quality = item.quality + 1
  18. if item.sell_in < 6:
  19. if item.quality < 50:
  20. item.quality = item.quality + 1
  21. if item.name != "Sulfuras, Hand of Ragnaros":
  22. item.sell_in = item.sell_in - 1
  23. if item.sell_in < 0:
  24. if item.name != "Aged Brie":
  25. if item.name != "Backstage passes to a TAFKAL80ETC concert":
  26. if item.quality > 0:
  27. if item.name != "Sulfuras, Hand of Ragnaros":
  28. item.quality = item.quality - 1
  29. else:
  30. item.quality = item.quality - item.quality
  31. else:
  32. if item.quality < 50:
  33. item.quality = item.quality + 1
  34. class Item:
  35. def __init__(self, name, sell_in, quality):
  36. self.name = name
  37. self.sell_in = sell_in
  38. self.quality = quality
  39. def __repr__(self):
  40. return "%s, %s, %s" % (self.name, self.sell_in, self.quality)