mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
53 lines
860 B
TypeScript
53 lines
860 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
dexId: [386],
|
|
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
|