import random from '../utils/random'; export default { picture: () => random.pick('๐ŸŽ†', '๐ŸŒƒ', '๐ŸŒ‡', '๐ŸŽ‡', '๐ŸŒŒ', '๐ŸŒ ', '๐ŸŒ…', '๐ŸŒ‰', '๐Ÿž', '๐ŸŒ†', '๐ŸŒ„', '๐Ÿ–ผ', '๐Ÿ—พ', '๐ŸŽ‘', '๐Ÿ™', '๐ŸŒ'), color(index: number) { const arr = [...new Intl.Segmenter().segment('๐Ÿ”ด๐ŸŸ ๐ŸŸก๐ŸŸข๐Ÿ”ต๐ŸŸฃโšซ๏ธโšช๏ธ๐ŸŸค')].map(x => x.segment); index = index % arr.length; return arr[index]; }, tgColor(index: number) { // https://github.com/telegramdesktop/tdesktop/blob/7049929a59176a996c4257d5a09df08b04ac3b22/Telegram/SourceFiles/ui/chat/chat_style.cpp#L1043 // https://github.com/LyoSU/quote-api/blob/master/utils/quote-generate.js#L163 const arr = [...new Intl.Segmenter().segment('โค๏ธ๐Ÿงก๐Ÿ’œ๐Ÿ’š๐Ÿฉต๐Ÿ’™๐Ÿฉท')].map(x => x.segment); index = index % arr.length; return arr[index]; }, };