mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
58
data/Sword & Shield/Fusion Strike/245.ts
Normal file
58
data/Sword & Shield/Fusion Strike/245.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Celebi V",
|
||||
fr: "Celebi V",
|
||||
es: "Celebi V",
|
||||
it: "Celebi V",
|
||||
pt: "Celebi V",
|
||||
de: "Celebi V"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 190,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
retreat: 1,
|
||||
regulationMark: "E",
|
||||
illustrator: "Teeziro",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
en: "Leaflet Dance"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Attach any number of Grass Energy cards from your hand to your Pokémon in any way you like."
|
||||
}
|
||||
}, {
|
||||
cost: ["Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Slash Back"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
|
||||
effect: {
|
||||
en: "Switch this Pokémon with 1 of your Benched Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user