Guest User

Untitled

a guest
Jul 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. require_relative './base'
  2.  
  3. module Item
  4. class AgedBrie < Item::Base
  5. def tick
  6. update_quality
  7. @days_remaining -= 1
  8. end
  9.  
  10. def update_quality
  11. case
  12. when @days_remaining > 0
  13. @quality += 1
  14. else
  15. @quality += 2
  16. end
  17.  
  18. @quality = Item::MAX_QUALITY if @quality > Item::MAX_QUALITY
  19. end
  20. end
  21. end
Add Comment
Please, Sign In to add comment