Add new beer template

This commit is contained in:
bmooney
2018-03-04 21:44:49 +00:00
parent 53cb8c69fb
commit d605712886

View File

@ -123,6 +123,16 @@ HIREME = [
[1,0,1,0,1,0,1,0,0,0,1,1,1,0,0,1,0,1,0,1,0,1,1,1],
]
BEER = [
[0,0,0,0,0,0,0,3,3,3,0,0,3,3,3,0,3,3,3,0,3,3,3,0,0],
[0,0,1,1,1,1,0,3,0,0,3,0,3,0,0,0,3,0,0,0,3,0,0,3,0],
[0,2,2,2,2,2,0,3,0,0,3,0,3,0,0,0,3,0,0,0,3,0,0,3,0],
[2,0,2,2,2,2,0,3,3,3,0,0,3,3,3,0,3,3,3,0,3,3,3,0,0],
[2,0,2,2,2,2,0,3,0,0,3,0,3,0,0,0,3,0,0,0,3,0,3,0,0],
[0,2,2,2,2,2,0,3,0,0,3,0,3,0,0,0,3,0,0,0,3,0,0,3,0],
[0,0,2,2,2,2,0,3,3,3,0,0,3,3,3,0,3,3,3,0,3,0,0,3,0],
]
ASCII_TO_NUMBER = {
'_': 0,
@ -173,6 +183,7 @@ IMAGES = {
'hello': HELLO,
'hireme': HIREME,
'oneup_str': ONEUP_STR,
'beer': BEER,
}