mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
55
data/Sword & Shield/Fusion Strike/175.ts
Normal file
55
data/Sword & Shield/Fusion Strike/175.ts
Normal file
@ -0,0 +1,55 @@
|
||||
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
|
Reference in New Issue
Block a user