1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05: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

56 lines
867 B
TypeScript

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