1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

55 lines
844 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Yveltal",
fr: "Yveltal",
es: "Yveltal",
it: "Yveltal",
pt: "Yveltal",
de: "Yveltal"
},
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Darkness"],
stage: "Basic",
retreat: 2,
regulationMark: "E",
illustrator: "kawayoo",
description: {
en: "When its life comes to an end, it absorbs the life energy of every living thing and turns into a cocoon once more."
},
attacks: [{
cost: ["Darkness", "Darkness"],
name: {
en: "Dark Cutter"
},
damage: 50
}, {
cost: ["Darkness", "Darkness", "Darkness"],
name: {
en: "Single Strike Wings"
},
damage: 110
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card