1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

56 lines
967 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Flutter Mane"
},
illustrator: "kodama",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
id: "Pokémon yang memiliki karakteristik yang mirip dengan makhluk hidup bernama Flutter Mane yang disebutkan dalam suatu buku."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
id: "Kepakan Malam Gelap"
},
effect: {
id: "Selama Pokémon ini ada di Arena Bertarung, Pokémon Bertarung lawan menjadi tidak memiliki Ability (selain Kepakan Malam Gelap)."
}
}],
attacks: [{
name: {
id: "Menerbangkan Kutukan"
},
effect: {
id: "Letakkan sejumlah 2 Token Kerusakan pada Pokémon Cadangan lawan sesukanya."
},
damage: 90,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card