1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

58 lines
966 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: "Ultra Rare",
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