1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

74 lines
1.1 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 '../Fates Collide'
const card: Card = {
name: {
en: "Kingdra-EX",
fr: "Hyporoi-EX",
},
illustrator: "hatachu",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
230,
],
hp: 170,
types: [
"Dragon",
],
suffix: "EX",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Big Storm",
fr: "Forte Tempête",
},
effect: {
en: "Discard any Stadium card in play.",
fr: "Défaussez toute carte Stade en jeu.",
},
damage: 20,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Dragon Trail",
fr: "Draco-Traînée",
},
effect: {
en: "This attack does 30 more damage for each basic Lightning Energy attached to this Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie Lightning de base attachée à ce Pokémon.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 1,
}
export default card