-
Notifications
You must be signed in to change notification settings - Fork 1
/
blowfish.cow.js
36 lines (35 loc) · 905 Bytes
/
blowfish.cow.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
35
36
"use strict";
/** @type {import(".").Cow} */
module.exports = {
name: "blowfish",
template: [
" \\",
" \\",
" | .",
" . |L /|",
" _ . |\\ _| \\--+._/| .",
" / ||\\| Y J ) / |/| ./",
" J |)'( | ` F`.'/",
" -<| F __ .-<",
" | / .-'. `. /-. L___",
" J \\ < \\ | | O\\|.-'",
" _J \\ .- \\/ O | | \\ |F",
" '-F -<_. \\ .-' `-' L__",
" __J _ _. >-' )._. |-'",
" `-|.' /_. \\_| F",
" /.- . _.<",
" /' /.' .' `\\",
" /L /' |/ _.-'-\\",
" /'J ___.---'\\|",
" |\\ .--' V | `. `",
" |/`. `-. `._)",
" / .-.\\",
" VK \\ ( `\\",
" `.\\",
""
],
actionPos: [
[ 0, 3 ],
[ 1, 4 ]
]
};