1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 08:09:54 +00:00

60 lines
832 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 '../Steam Siege'
const card: Card = {
name: {
en: "Drifloon",
fr: "Baudrive",
},
illustrator: "kodama",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
425,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Transfer Pain",
fr: "Transfert de Douleur",
},
effect: {
en: "Move 1 damage counter from 1 of your Pokémon to 1 of your opponent's Pokémon.",
fr: "Déplacez 1 marqueur de dégâts de lun de vos Pokémon vers lun des Pokémon de votre adversaire.",
},
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 1,
}
export default card