1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42:11 +00:00

52 lines
845 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Deoxys",
fr: "Deoxys",
es: "Deoxys",
it: "Deoxys",
pt: "Deoxys",
de: "Deoxys"
},
rarity: "Holo Rare",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
stage: "Basic",
retreat: 1,
regulationMark: "E",
illustrator: "Kouki Saitou",
description: {
en: "DNA from a space virus mutated and became a Pokémon. It appears where auroras are seen."
},
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
en: "Photon Boost"
},
damage: "80+",
effect: {
en: "If this Pokémon has any Fusion Strike Energy attached, this attack does 80 more damage."
}
}],
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card