-
Notifications
You must be signed in to change notification settings - Fork 3
/
kaomoji-data.el
68 lines (61 loc) · 4.73 KB
/
kaomoji-data.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
;;; kaomoji-data.el --- data for kaomoji.el -*- lexical-binding: t; -*-
;; Copyright (C) 2016 kuanyui
;; Author: kuanyui <[email protected]>
;; Keywords:
;; WTFPL 2.0
;; Ono Hiroko (kuanyui) (ɔ) Copyleft 2015
;;
;; This program is free software. It comes without any warranty, to
;; the extent permitted by applicable law. You can redistribute it
;; and/or modify it under the terms of the Do What The Fuck You Want
;; To Public License, Version 2, as published by Sam Hocevar. See
;; http://www.wtfpl.net/ for more details.
;;; Code:
(defvar kaomoji-table
'((("angry" "table" "生氣" "翻桌" "幹") . "(╯°□°)╯︵ ┻━┻" )
(("bleeding" "吐血") . "_:(´ཀ`」∠):_")
(("hehe" "真是個壞女孩" ) . "∩ __∩ y" )
(("cry" "泣き") . "・゚・。・゚・(つД`)" )
(("cry" "泣き" "哭哭") . "(´;ω;`)" )
(("cry" "泣き" "哭哭") . "(´;д;`)" )
(("cry miserably" ) . "(;´༎ຶД༎ຶ`)" )
(("dandin" "淡定" "淡定紅茶") . "ˊ_>ˋ" )
(("heart" "ハート" "愛心") . "♥" )
(("homo" "ホモ") . "┌(┌ ^o^)┐ホモォ" )
(("rail02000" "ショタ" "しょた" "shota") . "┌(┌ ^o^)┐しょた。。。" )
(("ehehe" "えへへ" "エヘヘ") . "へ(゜∇、°)へ" )
(("kita" "来たー" "キター" "きたー") . "キタ――(゚∀゚)――!!" )
(("lazy" "懶") . "_(:3 」∠ )_ " )
(("owo" ) . "ˊ・ω・ˋ" )
(("relax" ) . "ˊvˋ" )
(("uwu" ) . "( ˘ω˘ )" )
(("sad") . "(´・_・`)")
(("Huh?" "不知所云" "摳妞臉") . "(゚⊿゚)")
(("WTF" "什麼啦") . "(。ŏ_ŏ)")
(("owo") . "( ˘•ω•˘ )")
(("relax") . "(´-ω-`) ")
(("happy" "爽翻") . "(。A。) ")
(("yeah" ">w<") . "(ノ>ω<)ノ ")
(("rock") . "\\m/ >_< \\m/")
(("cheers" "歡呼") . "。:.゚ヽ(*´∀`)ノ゚.:。 ")
(("cheers" "歡呼") . " ヾ(*´∀ ˋ*)ノ ")
(("owo") . "(´・ω・`)")
(("happy" "爽爽") . "(゚∀。)")
(("don't see" "非禮勿視") . "(つд⊂) ")
(("alas" "無奈" "面對國民黨支持者的表情" "面對中國五毛的表情") . "╮(╯_╰)╭ ")
(("haha" "你看看你" "UCCU" "uccu") . "σ ゚∀ ゚) ゚∀゚)σ")
(("me?" "我嗎?") . "σ(´∀`*)")
(("don't mind") . "il||li _| ̄|○ヽ(・ω・`) ")
(("butt" "お尻" "おしり" "摳屁股") . "_(:3 ⌒゙)_ ")
(("five cent hello" "五毛你好") . "(・∀・)つ➄ ")
(("yeah" "耶") . "ε≡ヘ( ´∀`)ノ ")
(("i would be angry" "我要生氣了") . "(・`ω´・)")
(("really?" "orly" "呵呵" "是嗎" "是喔") . "(≖ᴗ≖๑)")
(("shocked" "震驚" "驚訝") . "(゚д゚)")
(("so pity" "你好可憐喔") . "。・゚・(つд`゚)つ⑩))Д´)")
(("come here" "來來來") . "ლ(´ڡ`ლ)")
(("angry" "furious") . "(/‵Д′)/~ ╧╧ ")
(("angry" "punch") . "#゚Å゚)⊂彡☆))゚Д゚)・∵")
))
(provide 'kaomoji-data)
;;; kaomoji-data.el ends here