1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

51 lines
839 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: "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