@@ -10,6 +10,7 @@ querying = [ "inspire", "shield", "scp", "riddle" ]
seychelles = [ "seychelles" ]
curse = [ "curse", "bless" ]
the_guy = [ "the_guy" ]
+the_house = [ "the_house" ]
[aliases]
speemteek = "speamteek"
@@ -0,0 +1,22 @@
+from command_system import RollbotResponse, RollbotFailure, as_plugin
+
+housetop = """\
+┏┓
+┃┃╱╲ In this
+┃╱╱╲╲ house
+╱╱╭╮╲╲ we love
+▔▏┗┛▕▔ & appreciate
+╱▔▔▔▔▔▔▔▔▔▔╲
+"""
+housebot = """
+╱╱┏┳┓╭╮┏┳┓ ╲╲
+▔▏┗┻┛┃┃┗┻┛▕▔
+@as_plugin("appreciate")
+def the_house(db, msg):
+ thehouse = housetop + ' '.join(list(msg.args(normalize=False))) + housebot
+ return RollbotResponse(msg, txt=thehouse)