1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

58 lines
962 B
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 '../Undaunted'
const card: Card = {
name: {
en: "Rayquaza & Deoxys LEGEND",
fr: "Rayquaza & Deoxys LÉGENDE",
de: "Rayquaza & Deoxys LEGENDE"
},
illustrator: "Shinji Higuchi + Sachiko Eba/樋口真嗣 + 江場左知子",
rarity: "LEGEND",
category: "Pokemon",
set: Set,
dexId: [
384,
],
hp: 140,
types: [
"Colorless",
"Psychic",
],
suffix: "Legend",
attacks: [
{
name: {
fr: "",
de: "Ozonsprenger"
},
effect: {
fr: "Placez cette carte sur votre Banc uniquement avec lautre moitié de Rayquaza & Deoxys LÉGENDE.",
de: "Lege alle -Energien, die an Rayquaza & Deoxys-LEGENDE angelegt sind, auf deinen Ablagestapel."
},
damage: 150,
cost: ["Fire", "Fire", "Lightning", "Colorless"]
},
],
stage: "Basic",
retreat: 0,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card