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

51 lines
858 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Basculin",
fr: "Bargantua",
es: "Basculin",
it: "Basculin",
pt: "Basculin",
de: "Barschuft"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Water"],
stage: "Basic",
retreat: 1,
regulationMark: "E",
illustrator: "Souichirou Gunjima",
description: {
en: "Known for their violence, these Pokémon have the most fights with schools of red-striped Basculin."
},
attacks: [{
cost: ["Water", "Colorless"],
name: {
en: "Swarm the Wound"
},
damage: "30+",
effect: {
en: "This attack does 10 more damage for each damage counter on your opponent's Active Pokémon."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card