Hacker News new | ask | show | jobs
by coolwanglu 4082 days ago
Try typing this in the browser console (might need to reload the game first)

nethack.apply_tileset('http://cook.web.eschelon.com/pictures/geoduck20x12.bmp', 12, 20)

I felt that a complete ASCII port worth a separate project, yet it might not be that interesting as we've already got NAO.

But if you guys feel that a ASCII tileset is ok, I'm happy to add it. How about this smaller version?

1 comments

Pretty neat! And I see you have included that tileset natively. I think that making "pure ASCII image-less tileset" should be piece of cake as well:

  .tile:after {
    display: block;
    text-align: center;
    font: bold 30px/30px monospace;
  }
  .tile158:after {
    content: '@';
    color: yellow;
  }