1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 07:32:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

47 lines
608 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Undaunted'
const card: Card = {
name: {
en: "Kyogre & Groudon LEGEND",
fr: "Kyogre & Groudon LÉGENDE",
},
illustrator: "Shinji Higuchi + Sachiko Eba/樋口真嗣 + 江場左知子",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
382,
],
hp: 150,
types: [
"Water",
"Fighting",
],
suffix: "Legend",
attacks: [
{
name: {
fr: "",
},
effect: {
fr: "Placez cette carte sur votre Banc uniquement avec l'autre moitié de Kyogre & Groudon LÉGENDE.",
},
},
],
}
export default card