The currently supported motd is the motd used by mojang, but other games might use another motd structure.
This could easily be added with a simple enum like:
enum Advertisement {
MinecraftBedrock(McMotd),
Other(String),
}
This would also allow other advertisements to be supported, from other games/applications.