from command_system import RollbotResponse, RollbotFailure, as_plugin housetop = """\ ┏┓ ┃┃╱╲ In this ┃╱╱╲╲ house ╱╱╭╮╲╲ we love ▔▏┗┛▕▔ & appreciate ╱▔▔▔▔▔▔▔▔▔▔╲ """ stfutop = """\ ┏┓ ┃┃╱╲ Shut ┃╱╱╲╲ The ╱╱╭╮╲╲ Fuck ▔▏┗┛▕▔ Up ╱▔▔▔▔▔▔▔▔▔▔╲ """ housebot = """ ╱╱┏┳┓╭╮┏┳┓ ╲╲ ▔▏┗┻┛┃┃┗┻┛▕▔ """ @as_plugin("appreciate") def the_house(db, msg): thehouse = housetop + ' '.join(list(msg.args(normalize=False))) + housebot return RollbotResponse(msg, txt=thehouse) @as_plugin("stfu") def shut_up(db, msg): shutup = stfutop + ' '.join(list(msg.args(normalize=False))) + housebot return RollbotResponse(msg, txt=shutup)