123456789101112131415161718192021222324252627282930313233343536373839 |
- 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)
|