| 12345678910111213141516171819202122232425262728 |
- # frozen_string_literal: true
- require_relative '../../lib/emoji.rb'
- module CharCarousel
- BIO = "Bio"
- STATUS = "Status"
- TYPE = "Type"
- RUMORS = "Rumors"
- IMAGE = "Images"
- BAGS = "Inventory"
- FAMILY = "Family Tree"
- ALL = "All"
- DEFAULT = "This Key"
- CROSS = "Delete Message"
- REACTIONS = {
- Emoji::NOTEBOOK => BIO,
- Emoji::QUESTION => STATUS,
- Emoji::PALLET => TYPE,
- Emoji::EAR => RUMORS,
- Emoji::PICTURE => IMAGE,
- Emoji::BAGS => BAGS,
- Emoji::FAMILY => FAMILY,
- Emoji::EYES => ALL,
- Emoji::KEY => DEFAULT,
- Emoji::CROSS => CROSS
- }
- end
|