chore: init

This commit is contained in:
2025-12-27 17:16:20 +02:00
commit 7b85dc6e07
10 changed files with 1727 additions and 0 deletions

50
bestPluginEVER/index.tsx Normal file
View File

@@ -0,0 +1,50 @@
/*
* Vencord, a Discord client mod
* Copyright (c) 2025 Vendicated and contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
import { addMessageAccessory, removeMessageAccessory } from "@api/MessageAccessories";
import definePlugin from "@utils/types";
import { Message } from "@vencord/discord-types";
import { IdiotWarning } from "./components/IdiotWarning";
import { VeryCool } from "./components/VeryCool";
function BigWarning({
message
}: {
message: Message;
}) {
return <>
<IdiotWarning message={message} />
<VeryCool message={message} />
</>;
}
export default definePlugin({
name: "BestPluginEver",
description: "Haha funny",
authors: [{
name: "ocbwoy3",
id: 486147449703104523n
}],
start() {
addMessageAccessory(
"BigWarning",
(props: Record<string, any>) => {
return (
<BigWarning
message={props.message as Message}
/>
);
},
4
);
},
stop() {
removeMessageAccessory("BigWarning");
}
});