:check_coop_feed_box
  farm coop feed

:check_coop_feed_box_sign
  if variable feedCount > 14
    Player "I have <var:feedCount> bags of bird feed left. It should be enough for now."
    return
  end

  if variable feedCount > 1
    Player "I have <var:feedCount> bags of bird feed left. I can still add more."
    return
  end

  if variable feedCount == 1
    Player "I'm on my last bag of bird feed. I need to add more."
    return
  end

  Player "It's empty. I can add bird feed here and it'll feed my chickens automatically."

:check_coop_feed_box_full
  Player "There are <var:feedCount> bags of bird feed left. The box is full."
