How BinahBot Works - Part 1

Ghoulean March 15, 2025 #lor

The goal of this post is to outline how BinahBot works in a way such that a somewhat experienced programmer (~passed Intro to Programming) could replicate what I've done. I assume the reader is familiar with Discord (the IRC app), Discord bots, and basic programming concepts.

Background

BinahBot is a Discord chat bot for querying data about the video game Library of Ruina.

Library of Ruina is a video game. It's a story-rich card battler with deckbuilding emphasis. In-game, cards are referred to as "pages".

Briefly, there are five different types of pages in Library of Ruina: abnormality pages ("abno pages"), combat pages, key pages, passives, and battle symbols. Okay, the last two technically aren't pages, but for BinahBot's purposes we treat them as pages.

What do I want?

This might sound like a dumb question to ask. I want a Discord Bot for Library of Ruina, of course!

But reality has a surprising amount of detail; I want a card lookup, but how do I want to look up cards? Will I have five separate commands for the five different type of pages? What will be the name of the command(s)? Will I permit command aliasing (e.g. "abno" is an acceptable shorthand for "abnormality"). How will I educate users about how to use each command?

Underestimating a complex problem results in a low-quality solution that barely works, if it even does at all. You also look like an idiot (because you are). That being said, we still want to strive an appropriate solution that is simple relative to the complexity of the problem.

User stories

Many developers fall into the trap of just making up what the user wants. For features that don't matter, that's fine. For features that do, you risk getting ignored by your target demographic because you never consulted them about what they wanted.

In this case, however, the user is me. I'm the user. I play Library of Ruina a lot, and talk about Library of Ruina a lot. Here's what I want:

Page lookup

This is the bread and butter of what BinahBot does

See implementation in Part 3: Page Lookup.

Deck sharing

See implementation in Part 4: Deckbuilding and Sharing.

Misc

Behaviors of BinahBot shared between the other two features

I won't have a post dedicated for these, but I do discuss hosting infrastructure in Part 5: Infrastructure.