My rough draft for a variant of the guy which prints the house, plus the person's name
@@ -0,0 +1,25 @@
+from command_system import RollbotResponse, RollbotFailure, as_plugin
+
+housetop = """\
+┏┓
+┃┃╱╲ In this
+┃╱╱╲╲ house
+╱╱╭╮╲╲ we love
+▔▏┗┛▕▔ & appreciate
+╱▔▔▔▔▔▔▔▔▔▔╲
+"""
+housebot = """\
+╱╱┏┳┓╭╮┏┳┓ ╲╲
+▔▏┗┻┛┃┃┗┻┛▕▔
+@as_plugin("hey")
+def the_house(db, msg):
+ for x, y in zip(msg.args(), ("can", "i", "have", "the", "house", "with")):
+ if x.lower() != y:
+ return RollbotResponse(msg, failure=RollbotFailure.INVALID_ARGUMENTS)
+ thehouse = housetop + msg.args().last() + housebot
+ return RollbotResponse(msg, txt=thehouse)