forked from chaspy/hanakintaro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.ts
134 lines (125 loc) · 3.29 KB
/
conf.ts
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// If you send '@your-app answer' in @CHANNEL_ID channel
// Response $message
interface hanakinResponse {
[key: string]: string;
}
const hanakinResponse: hanakinResponse = {
Sun: "休みなので、花金である",
Mon: "花金である",
Tue: "ちょっと花金である",
Wed: "花金ではない",
Thu: "やや花金である",
Fri: "真の花金100%である",
Sat: "休みなので、花金である",
};
interface hanakinBars {
[key: string]: hanakinBar[];
}
interface hanakinBar {
name: string;
alcohol: string;
food: string;
url: string;
}
const hanakinBar: hanakinBars = {
家: [{ name: "家", alcohol: "好きなお酒", food: "好きなおつまみ", url: "" }],
目黒: [
{
name: "another8",
alcohol: "ビール",
food: "大根の唐揚げ",
url: "https://sakahachi.jp/another8/",
},
{
name: "いと。",
alcohol: "日本酒",
food: "白子ポンず",
url: "https://tabelog.com/tokyo/A1316/A131601/13246061/",
},
{
name: "なっぱ ごちそう",
alcohol: "ワイン",
food: "帆立と鮮魚のカルパッチョ (サラダ仕立て)",
url: "https://retty.me/area/PRE13/ARE13/SUB704/100000738931/",
},
{
name: "ゴス",
alcohol: "ウイスキー",
food: "ナッツ",
url: "https://tabelog.com/tokyo/A1316/A131601/13220203/",
},
],
九段下: [
{
// 神楽坂
name: "クラフトビアサーバーランド",
alcohol: "ビール",
food: "穴子の Fish & Chips",
url: "https://tabelog.com/tokyo/A1309/A130905/13160783/",
},
{
// 神楽坂
name: "BEER OLYN",
alcohol: "ビール",
food: "水餃子",
url: "https://www.beerolyn.com/",
},
{
// 神楽坂
name: "亀戸ホルモン",
alcohol: "ビール",
food: "ホルモン",
url: "https://tabelog.com/tokyo/A1309/A130905/13231854/",
},
{
// 神保町
name: "クラフトビアマーケット",
alcohol: "ビール",
food: "クラフトビールキーマカレー",
url: "https://www.craftbeermarket.jp/jimbocho/",
},
],
Sydney: [
{
name: "Sydney Brewery Surry Hills",
alcohol: "Beer",
food: "Sydney Brewery Loaded Burger",
url: "https://www.sydneybrewery.com/surry-hills/",
},
{
name: "Keg & Brew",
alcohol: "Beer",
food: "NACHOS CON FRIJOLES",
url: "https://www.kegandbrew.com.au/eat-drink/",
},
],
};
// 給料日を設定する日付
export const payday = [
"2023-11-22",
"2023-12-22",
"2024-01-22",
"2024-02-22",
"2024-03-22",
"2024-04-22",
"2024-05-22",
"2024-06-21",
"2024-07-22",
"2024-08-22",
"2024-09-20",
"2024-10-22",
];
export const bonusDay = [
"2023-12-11",
"2024-06-10",
"2024-12-10",
];
export default {
message: hanakinResponse,
timezone: "Asia/Tokyo",
usage:
"メンションして `今日花金?` って聞いてね。 `今日花金? EST` のように timezone 指定もできるよ。飲む場所が決まっていれば `今日目黒で花金?` のように聞いてね。お酒が飲めない人は `今日目黒でノンアル花金?` と聞いてみよう。",
recommended_bar: hanakinBar,
payday: payday,
bonusDay: bonusDay,
};