← back to browse
goat command

anime

Full anime guide with action anime suggestions

0
views
0
likes
0
installs

Aliases: anime, tell me about anime, suggest anime, best anime, best action anime, anime recommendation, recommend anime, about anime

raw source
module.exports = {
  config: {
    name: "anime",
    aliases: [
      "anime",
      "tell me about anime",
      "suggest anime",
      "best anime",
      "best action anime",
      "anime recommendation",
      "recommend anime",
      "about anime"
    ],
    version: "1.1",
    author: "Masrafi x ChatGPT",
    shortDescription: "Full anime guide with action anime suggestions",
    longDescription: "Gives full anime explanation and best action anime picks",
    category: "info",
    guide: {
      en: "Ask: anime / best action anime / suggest anime / tell me about anime"
    },
    usePrefix: false
  },

  onStart: async () => {},

  onChat: async function ({ message, event }) {
    const text = (event.body || "").trim().toLowerCase();
    const triggers = [
      "anime",
      "tell me about anime",
      "suggest anime",
      "suggest some anime",
      "best action anime",
      "anime recommendation",
      "recommend anime",
      "about anime"
    ];
    if (!triggers.includes(text)) return;

    const reply = `
╭──────────🎌 *Anime Guide* ──────────╮
│ 🎨 *What is Anime?*  
│ Japanese-style animation with rich narratives, vibrant art, and emotional depth.

│ 💥 *Top Action Anime (Must-Watch)*  
│ • *Fullmetal Alchemist: Brotherhood* – masterpiece of pacing & theme 1  
│ • *Attack on Titan* – brutal world, epic battles, deep mysteries 2  
│ • *One Punch Man* – satirical, stylish action with humor 3  
│ • *Demon Slayer: Kimetsu no Yaiba* – stunning visuals, emotional sword-fighting 4  
│ • *Jujutsu Kaisen* – supernatural fights and complex curses 5

│ 🆕 *Trending & Upcoming in 2025*  
│ • *Jujutsu Kaisen Season 3* – more chaos, new enemies, Gojo’s backstory 6  
│ • *Demon Slayer: Mist Pillar Arc* – new battles, emotional arc  7  
│ • *Chainsaw Man Season 2*  
│ • *Vinland Saga Season 2*  
│ • *Black Clover Final Season* 8

│ 🔗 *More Awesome Picks*  
│ • *Hunter x Hunter* • *Gurren Lagann* • *Mob Psycho 100* • *Psycho‑Pass* • *Cowboy Bebop* 9

╰─────────────────────────────────╯

💡 Want info on a specific anime? Try asking  
“Tell me about Bleach” or “Who is Aizen?”  
I’ll reply with detailed info, links and more!  
`;

    message.reply(reply);
  }
};

View raw file