-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathOverrides.js
34 lines (34 loc) · 923 Bytes
/
Overrides.js
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
module.exports = [{
overrideSearchTerm: [
'harambe',
'harambe the gorilla',
'our lord and saviour'
],
name: 'Harambe the gorilla',
customMessage: '[Harambe](https://en.wikipedia.org/wiki/Killing_of_Harambe) 🐒 died 💀 for 😢 our sins 🙏',
dateOfBirth: new Date(1999, 4, 27),
dateOfDeath: new Date(2016, 4, 28),
url: 'https://en.wikipedia.org/wiki/Killing_of_Harambe'
},
{
overrideSearchTerm: [
'cecil',
'cecil the lion',
'cecil lion'
],
name: 'Cecil the lion',
dateOfBirth: new Date(2002, 0, 1),
dateOfDeath: new Date(2015, 6, 1),
url: 'https://en.wikipedia.org/wiki/Killing_of_Cecil_the_lion'
},
{
overrideSearchTerm: [
'weiran zhang',
'weiran',
'dead or alive bot'
],
name: 'Weiran Zhang',
dateOfBirth: null,
dateOfDeath: null,
url: 'https://github.com/weiran'
}];