mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
56
data/Sword & Shield/Fusion Strike/6.ts
Normal file
56
data/Sword & Shield/Fusion Strike/6.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Breloom V",
|
||||
fr: "Chapignon V",
|
||||
es: "Breloom V",
|
||||
it: "Breloom V",
|
||||
pt: "Breloom V",
|
||||
de: "Kapilz V"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 210,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
retreat: 2,
|
||||
regulationMark: "E",
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Counter"
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon was damaged by an attack during your opponent's last turn, this attack does that much more damage."
|
||||
}
|
||||
}, {
|
||||
cost: ["Grass", "Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Mach Cross"
|
||||
},
|
||||
|
||||
damage: 140
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user