This commit is contained in:
mati917 2024-07-02 18:24:27 -03:00
parent 0e53a4799f
commit fec282e39a
2 changed files with 42 additions and 0 deletions

41
frames/bomb.go Normal file
View file

@ -0,0 +1,41 @@
package frames
// This is the value stored in the FrameMap
var Bomb = DefaultFrameType(bomb)
var bomb = []string{
`
.-
=:
+.
+
+
+
-:
.=
-= ::-------.
-- .:=*=:=+#@@@@\%\%\%\%\%##\%\%#+=:
-=@@@@@@@@@@@@\%\%\%\%###****##\%\%=
=\%@#@@@@@@@@@@@@@@\%\%\%####****#\%\%+.
=@@@@@@@##\%@@@@@@@@@@@@\%\%\%\%#####\%\%@=
-@@@@@@@\%\%#@@@@@@@@@@@@@@@@\%\%\%\%\%\%\%\%@=
.\%@\%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:
+@@@@@@@@@@@@\%\%\%\%\%\%\%@@@@@@@@@@@@@@@@@@#
.\%@@@@@@@@@@\%\%#####\%\%\%@@@@@@@@@@\%\%@@@@@@:
=@@@@@@@@@@\%\%##***###\%\%@@@@@@\%\%\%\%\%\%\%@@@@=
=@@@@@@@@@@\%\%##****##\%\%@@@@@\%\%\%####\%\%@@@*
=@@@@@@@@@@\%\%\%######\%\%\%@@@@\%\%\%#####\%\%@@@=
.\%@@@@@@@@@@@\%\%\%\%\%\%\%\%@@@@@@\%\%######\%\%@@@=
*\%@@@@@@@@@@@@@\%\%@@@@@@@@@\%\%#####\%\%@@@@
.#\%@@@@@@@@@@@@@@@@@@@@@@@\%\%\%\%\%\%\%\%@@@@-
+\%@@@@@@@@@@@@@@@@@@@@@@@@\%\%\%@@@@@\%:
+\%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\%
:*\%@@@@@@@@@@@@@@@@@@@@@@@@@@\%-
.+\%@@@@@@@@@@@@@@@@@@@@@@#-
-=*\%@@@@@@@@@@@@@@\%#=.
::=++******-:
`,
}

View file

@ -56,4 +56,5 @@ var FrameMap = map[string]FrameType{
"rick": Rick,
"spidyswing": Spidy,
"torus-knot": TorusKnot,
"bomb": Bomb,
}