1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00

71 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Shining Legends'
const card: Card = {
name: {
en: "Keldeo",
fr: "Keldeo",
},
illustrator: "kodama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
647,
],
hp: 110,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Bail Out",
fr: "Renflouage",
},
effect: {
en: "Put a Water Pokémon from your discard pile into your hand.",
fr: "Ajoutez un Pokémon Water de votre pile de défausse à votre main.",
},
},
{
cost: [
"Water",
"Water",
],
name: {
en: "Resolute Blade",
fr: "Lame Décidée",
},
effect: {
en: "This attack does 20 more damage for each of your opponent's Benched Pokémon.",
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chaque Pokémon de Banc de votre adversaire.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card