forked from adam/discord-bot-shtik
Adam R Grey
efb4ab00d2
notes to self. 1) trust in upsert. an account has an external ID, a channel has an external ID w.r.t. its protocol. 2) as long as you can collapse a User, collapse Self.
38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
namespace vassago.Behavior;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using vassago.Models;
|
|
using static vassago.Models.Enumerations;
|
|
|
|
[StaticPlz]
|
|
public class GeneralSnarkPlaying : Behavior
|
|
{
|
|
public override string Name => "playin Snarkiness";
|
|
|
|
public override string Trigger => "he thinks i'm playin";
|
|
|
|
public override string Description => "I didn't think you were playing, but now I do";
|
|
|
|
public override bool ShouldAct(Message message)
|
|
{
|
|
if(Behaver.Instance.IsSelf(message.Author.Id))
|
|
return false;
|
|
|
|
if((MeannessFilterLevel)message.Channel.EffectivePermissions.MeannessFilterLevel < MeannessFilterLevel.Medium ||
|
|
(LewdnessFilterLevel)message.Channel.EffectivePermissions.LewdnessFilterLevel < LewdnessFilterLevel.Moderate)
|
|
return false;
|
|
|
|
return Regex.IsMatch(message.Content, "^(s?he|(yo)?u|y'?all|they) thinks? i'?m (playin|jokin|kiddin)g?$", RegexOptions.IgnoreCase);
|
|
}
|
|
public override async Task<bool> ActOn(Message message)
|
|
{
|
|
await message.Channel.SendMessage("I believed you for a second, but then you assured me you's a \uD83C\uDDE7 \uD83C\uDDEE \uD83C\uDDF9 \uD83C\uDDE8 \uD83C\uDDED");
|
|
return true;
|
|
}
|
|
} |