1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,72 @@
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