1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 00:29:55 +00:00

73 lines
1.2 KiB
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 '../Plasma Blast'
const card: Card = {
name: {
en: "Drifblim",
fr: "Grodrive",
},
illustrator: "Akira Komayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
426,
],
hp: 100,
types: [
"Psychic",
],
evolveFrom: {
en: "Drifloon",
fr: "Baudrive",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Drifting Balloon",
fr: "Ballon Flottant",
},
effect: {
en: "This Pokémon's attacks cost Colorless less for each of your opponent's Team Plasma Pokémon in play.",
fr: "Les attaques de ce Pokémon coûtent Colorless de moins pour chaque Pokémon de la Team Plasma de votre adversaire en jeu.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Derail",
fr: "Déraillement",
},
effect: {
en: "Discard a Special Energy attached to the Defending Pokémon.",
fr: "Défaussez une Énergie spéciale attachée au Pokémon Défenseur.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
}
export default card