This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
conf.ts
95 lines (88 loc) · 2.32 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
// 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;
url: string;
}
const hanakinBar: hanakinBars = {
家: [{ name: "家", alcohol: "好きなお酒", url: "" }],
目黒: [
{ name: "another8", alcohol: "ビール", url: "https://sakahachi.jp/another8/" },
{
name: "いと。",
alcohol: "日本酒",
url: "https://tabelog.com/tokyo/A1316/A131601/13246061/",
},
{
name: "なっぱ ごちそう",
alcohol: "ワイン",
url: "https://retty.me/area/PRE13/ARE13/SUB704/100000738931/",
},
{
name: "ゴス",
alcohol: "ウイスキー",
url: "https://tabelog.com/tokyo/A1316/A131601/13220203/",
},
],
九段下: [
{
// 神楽坂
name: "クラフトビアサーバーランド",
alcohol: "ビール",
url: "https://tabelog.com/tokyo/A1309/A130905/13160783/",
},
{
// 神楽坂
name: "BEER OLYN",
alcohol: "ビール",
url: "https://www.beerolyn.com/",
},
{
// 神楽坂
name: "亀戸ホルモン",
alcohol: "ビール",
url: "https://tabelog.com/tokyo/A1309/A130905/13231854/",
},
{
// 神保町
name: "クラフトビアマーケット",
alcohol: "ビール",
url: "https://www.craftbeermarket.jp/jimbocho/",
},
],
Sydney: [
{
name: "Sydney Brewery Surry Hills",
alcohol: "Beer",
url: "https://www.sydneybrewery.com/surry-hills/",
},
{
name: "Keg & Brew",
alcohol: "Beer",
url: "https://www.kegandbrew.com.au/eat-drink/",
},
],
};
export default {
message: hanakinResponse,
timezone: "Asia/Tokyo",
usage:
"メンションして `今日花金?` って聞いてね。 `今日花金? Canada/Pacific` `今日花金? EST` のように timezone 指定もできるよ",
recommended_bar: hanakinBar,
};