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

73 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Kyogre",
fr: "Kyogre",
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
382,
],
hp: 130,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "High Water",
fr: "Hautes Eaux",
},
effect: {
en: "Attach 2 Water Energy cards from your discard pile to 1 of your Pokémon.",
fr: "Attachez 2 cartes Énergie Water de votre pile de défausse à lun de vos Pokémon.",
},
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Swirling Waves",
fr: "Vagues Tourbillonnantes",
},
effect: {
en: "Discard an Energy from this Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon.",
},
damage: 130,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card