You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/lurve.py
+25-8Lines changed: 25 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,29 @@
5
5
6
6
@hook.command("lurve","luff", "luv")
7
7
deflurve(text, nick, message):
8
-
""""loves all over <user>"""
8
+
"""lurves all over <user>"""
9
9
target=text.strip()
10
-
11
-
12
-
loving= [ nick+" wraps arms around "+target+" and clings forever", nick+" cuddles "+target+" in the fluffiest blanket ever", nick+" lays their head on the lap of "+target+" and goes to sleep, dreaming da best sweet dreams ", nick+" caresses "+target+"'s hair", nick+" caresses "+target+"'s cheek", nick+" plants a shy kiss on "+target+"'s cheek", nick+" gives "+target+" a BIIIIIIIIG hug!!!", nick+" lovingly tackles "+target+" into a pit of the softest pillows ever", nick+" cheers happily for "+target+"!!", nick+" pulls "+target+" back into bed for more cuddles ♥~", nick+" snuggles "+target+" for Netflix and chili popcorn", nick+" happily kisses "+target+" on the cheek", nick+" shares a milkshake with "+target]
13
-
14
-
message(random.choice(loving))
15
-
16
-
10
+
11
+
# Use {N} to represent the person's nickname who is performing the action
12
+
# Use {T} to represent the person's nickname who is the target of the action
13
+
loving= [
14
+
"{N} wraps arms around {T} and clings forever",
15
+
"{N} cuddles {T} in the fluffiest blanket ever",
16
+
"{N} lays their head on the lap of {T} and goes to sleep, dreaming da best sweet dreams",
17
+
"{N} caresses {T}'s hair",
18
+
"{N} caresses {T}'s cheek",
19
+
"{N} plants a shy kiss on {T}'s cheek",
20
+
"{N} gives {T} a BIIIIIIIIG hug!!!",
21
+
"{N} lovingly tackles {T} into a pit of the softest pillows ever",
22
+
"{N} cheers happily for {T}!!",
23
+
"{N} pulls {T} back into bed for more cuddles ♥~",
0 commit comments