xd
This commit is contained in:
parent
0e53a4799f
commit
fec282e39a
2 changed files with 42 additions and 0 deletions
41
frames/bomb.go
Normal file
41
frames/bomb.go
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
package frames
|
||||||
|
|
||||||
|
// This is the value stored in the FrameMap
|
||||||
|
var Bomb = DefaultFrameType(bomb)
|
||||||
|
|
||||||
|
var bomb = []string{
|
||||||
|
`
|
||||||
|
|
||||||
|
|
||||||
|
.-
|
||||||
|
=:
|
||||||
|
+.
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+
|
||||||
|
-:
|
||||||
|
.=
|
||||||
|
-= ::-------.
|
||||||
|
-- .:=*=:=+#@@@@\%\%\%\%\%##\%\%#+=:
|
||||||
|
-=@@@@@@@@@@@@\%\%\%\%###****##\%\%=
|
||||||
|
=\%@#@@@@@@@@@@@@@@\%\%\%####****#\%\%+.
|
||||||
|
=@@@@@@@##\%@@@@@@@@@@@@\%\%\%\%#####\%\%@=
|
||||||
|
-@@@@@@@\%\%#@@@@@@@@@@@@@@@@\%\%\%\%\%\%\%\%@=
|
||||||
|
.\%@\%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:
|
||||||
|
+@@@@@@@@@@@@\%\%\%\%\%\%\%@@@@@@@@@@@@@@@@@@#
|
||||||
|
.\%@@@@@@@@@@\%\%#####\%\%\%@@@@@@@@@@\%\%@@@@@@:
|
||||||
|
=@@@@@@@@@@\%\%##***###\%\%@@@@@@\%\%\%\%\%\%\%@@@@=
|
||||||
|
=@@@@@@@@@@\%\%##****##\%\%@@@@@\%\%\%####\%\%@@@*
|
||||||
|
=@@@@@@@@@@\%\%\%######\%\%\%@@@@\%\%\%#####\%\%@@@=
|
||||||
|
.\%@@@@@@@@@@@\%\%\%\%\%\%\%\%@@@@@@\%\%######\%\%@@@=
|
||||||
|
*\%@@@@@@@@@@@@@\%\%@@@@@@@@@\%\%#####\%\%@@@@
|
||||||
|
.#\%@@@@@@@@@@@@@@@@@@@@@@@\%\%\%\%\%\%\%\%@@@@-
|
||||||
|
+\%@@@@@@@@@@@@@@@@@@@@@@@@\%\%\%@@@@@\%:
|
||||||
|
+\%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\%
|
||||||
|
:*\%@@@@@@@@@@@@@@@@@@@@@@@@@@\%-
|
||||||
|
.+\%@@@@@@@@@@@@@@@@@@@@@@#-
|
||||||
|
-=*\%@@@@@@@@@@@@@@\%#=.
|
||||||
|
::=++******-:
|
||||||
|
|
||||||
|
`,
|
||||||
|
}
|
|
@ -56,4 +56,5 @@ var FrameMap = map[string]FrameType{
|
||||||
"rick": Rick,
|
"rick": Rick,
|
||||||
"spidyswing": Spidy,
|
"spidyswing": Spidy,
|
||||||
"torus-knot": TorusKnot,
|
"torus-knot": TorusKnot,
|
||||||
|
"bomb": Bomb,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue