generated from nhcarrigan/template
90 lines
1.5 KiB
TypeScript
90 lines
1.5 KiB
TypeScript
/**
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
|
|
import type { Ascii } from "../interfaces/ascii.js";
|
|
|
|
export const cats: Array<Ascii> = [
|
|
{
|
|
author: "Naomi Carrigan",
|
|
text: ` /\\_/\\
|
|
( o.o )
|
|
> ^ <`,
|
|
},
|
|
{
|
|
author: "Naomi Carrigan",
|
|
text: ` /\\ /\\
|
|
( . .)
|
|
) (
|
|
( v )
|
|
^^ ^ ^^`,
|
|
},
|
|
{
|
|
author: "Naomi Carrigan",
|
|
text: ` /\\_/\\
|
|
( -.- )
|
|
_/ \\_
|
|
( \\ ___ / )
|
|
\\ ___ /
|
|
^^ ^^`,
|
|
},
|
|
{
|
|
author: "Naomi Carrigan",
|
|
text: ` |\\ _,,,---,,_
|
|
/,\`.-'\`' -. ;-;;,_
|
|
|,4- ) )-,_..;\\ ( \`'-'
|
|
'---''(_/--' \`-'\\_)`,
|
|
},
|
|
{
|
|
author: "Naomi Carrigan",
|
|
text: ` /\\___/\\
|
|
( o o )
|
|
) _ (
|
|
( (_) )
|
|
( ( )-( ) )
|
|
(__(__)_(__))`,
|
|
},
|
|
{
|
|
author: "Naomi Carrigan",
|
|
text: ` |\\ /|
|
|
| \\____/ |
|
|
| | | |
|
|
\\ | | /
|
|
\\|__|/
|
|
/__\\`,
|
|
},
|
|
{
|
|
author: "Naomi Carrigan",
|
|
text: ` /\\ /\\
|
|
( ^ ^ )
|
|
) (
|
|
( ___ )
|
|
( ( ) ) )
|
|
(__(__)_(__))`,
|
|
},
|
|
{
|
|
author: "Naomi Carrigan",
|
|
text: ` /\\ /\\
|
|
{ \`---' }
|
|
{ O O }
|
|
~~>{ V }<~~
|
|
\\ \\|/ /
|
|
\`-----'`,
|
|
},
|
|
{
|
|
author: "Naomi Carrigan",
|
|
text: ` . .
|
|
\\ /
|
|
___\\___/___
|
|
/ \\
|
|
( @ @ )
|
|
\\ ^ /
|
|
| \\_____/ |
|
|
\\ /
|
|
\\_____/`,
|
|
},
|
|
|
|
];
|