Skip to content

Commit

Permalink
Add... \*sigh*... add /piss command
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinegb committed Apr 25, 2024
1 parent f75b869 commit a8e3e1b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ use crate::{
collective::collective,
confess::confess,
portside::check_portside_reactions,
rp_commands::{bite, boop, gnaw, meow, murder, pat},
rp_commands::{bite, boop, gnaw, meow, murder, pat, piss},
};

/// User data, which is stored and accessible in all command invocations
Expand Down Expand Up @@ -144,6 +144,7 @@ async fn main(#[shuttle_runtime::Secrets] secret_store: SecretStore) -> ShuttleS
confess(),
collective(),
debug::embeds(),
piss(),
],
event_handler: |ctx, event, _framework, _data| {
Box::pin(async move {
Expand Down
30 changes: 30 additions & 0 deletions src/rp_commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,3 +211,33 @@ rp_command!(
FloofEmoji::FloofPlead,
),
);

rp_command!(
piss,
"Thaaaaaat'sssss pissssssssssss",
"Who you will... piss",
[
(
"{a} pissed {b}\n(I do not know what that means) {e}",
FloofEmoji::AFloofLoad,
),
(
"{a} whispered \"*piss yourself*\" into {b}'s ear and they listened {e}",
FloofEmoji::FloofOwo,
),
(
"{a} activated the peeing-your-self-inducing-waves-inator machine and {b} was a bit too close {e}",
FloofEmoji::FloofLurk,
),
(
"Run away {b}-! {a} has a piss kink {e}",
FloofEmoji::FloofScared,
),
(
"{a} JUST *PEED **ON*** {b}?????????? {e}\nI'm quitting istg...",
FloofEmoji::FloofNervous,
),
],
("WTF {a} PEED ON ME EW EW EW EWWWWW {e}", FloofEmoji::FloofScared),
("Ummm, guys...? {a} pissed themselves... {e}", FloofEmoji::FloofNervous),
);

0 comments on commit a8e3e1b

Please sign in to comment.