Advertisement
skypop

CC SukaiPoppuGo head

Sep 2nd, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.58 KB | None | 0 0
  1. --------------------
  2. -- SukaiPoppuGo head
  3. --
  4.  
  5. local _term = term.current()
  6. local x,y = _term.getCursorPos()
  7. local gfx = {
  8.   {
  9.     "\159\143\143\143\144",
  10.     "ffff6",
  11.     "6666f",
  12.   },
  13.   {
  14.     "\149\151 \148\149",
  15.     "f00f6",
  16.     "6f60f",
  17.   },
  18.   {
  19.     "\149\136\143\132\149",
  20.     "ff6f6",
  21.     "66f6f",
  22.   },
  23.   {
  24.     "\130\131\131\131\129",
  25.     "66666",
  26.     "fffff",
  27.   },
  28. }
  29. _term.setPaletteColor(colors.pink, 215/256, 138/256, 127/256)
  30. for _y,line in ipairs(gfx) do
  31.     _term.setCursorPos(x, _y + y-1)
  32.     _term.blit(unpack(line))
  33. end
  34. _term.setCursorPos(x,y+#gfx)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement